From 7e8fc00e4984e1a60d4d9c1c7fdb4a47b558b115 Mon Sep 17 00:00:00 2001 From: LucasMZ Date: Sun, 25 May 2025 14:29:18 -0300 Subject: [PATCH] build: use a lint.xml file for granular control over lint behavior allows us to ignore missingQuantity for specific languages, currently we have no plurals, though also disabling missingTranslation --- app/build.gradle | 2 +- app/lint.xml | 14 ++++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 app/lint.xml diff --git a/app/build.gradle b/app/build.gradle index eeb23b05d..b0a6ac74f 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -121,7 +121,7 @@ android { jvmTarget = "11" } lint { - disable 'GoogleAppIndexingWarning' + lintConfig = file("app/lint.xml") } } diff --git a/app/lint.xml b/app/lint.xml new file mode 100644 index 000000000..8aab60fb4 --- /dev/null +++ b/app/lint.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + \ No newline at end of file