From b0648b613d748080c64a0e1796213894494f19fd Mon Sep 17 00:00:00 2001 From: Eric Kok Date: Thu, 28 Jan 2016 10:24:27 +0100 Subject: [PATCH] Ignore lint warning on mising public constructor of dialog fragment. Fixes #276. --- app/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/build.gradle b/app/build.gradle index 0f60ed1e..4177986f 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -28,7 +28,7 @@ android { } } lintOptions { - disable 'MissingTranslation', 'ExtraTranslation', 'StringFormatInvalid' + disable 'MissingTranslation', 'ExtraTranslation', 'StringFormatInvalid', 'ValidFragment' } }