From f63a25f5829ee9bdace7cf71c1b8bf6f5333cc2c Mon Sep 17 00:00:00 2001 From: Aayush Gupta Date: Sun, 2 Oct 2022 18:12:02 +0530 Subject: [PATCH] gradle: Move lint params to specific config Signed-off-by: Aayush Gupta --- app/build.gradle | 3 +-- app/lint.xml | 8 ++++++++ 2 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 app/lint.xml diff --git a/app/build.gradle b/app/build.gradle index c77b9f489..1e85d85bd 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -59,8 +59,7 @@ android { } lintOptions { - disable "GoogleAppIndexingWarning", "ButtonStyle", "AlwaysShowAction", - "MissingTranslation", "MissingPrefix" + lintConfig file("lint.xml") } sourceSets { diff --git a/app/lint.xml b/app/lint.xml new file mode 100644 index 000000000..c1c28e55d --- /dev/null +++ b/app/lint.xml @@ -0,0 +1,8 @@ + + + + + + + +