From fa73e99d85a796fb5bc1e4f4cdac3b2a8ec5101b Mon Sep 17 00:00:00 2001 From: Franz Kunze <45203772+kunzef@users.noreply.github.com> Date: Wed, 12 Jul 2023 18:32:02 +0200 Subject: [PATCH] Fixes configuration file lint.xml does not exist (#1596) * Added ./ to lintConfig file path * Added ../ to lintConfig file path --- app/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/build.gradle b/app/build.gradle index 32a110dee..7cfc28cae 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -78,7 +78,7 @@ android { checkAllWarnings true disable 'GoogleAppIndexingWarning', 'TrulyRandom', 'ContentDescription', 'UnusedIds', 'UnusedResources', 'SelectableText' htmlReport false - lintConfig file('gradle/config/lint.xml') + lintConfig file('../gradle/config/lint.xml') } }