diff options
author | Michael W <baddaemon87@gmail.com> | 2022-01-31 16:07:53 +0100 |
---|---|---|
committer | Bruno Martins <bgcngm@gmail.com> | 2022-02-10 20:53:39 +0000 |
commit | 9f814a9a320fc30fa5635ea35a7f724929ff9ed3 (patch) | |
tree | cb1c9b228ec9a7774cdf73dfb388d12ea9a366e7 | |
parent | 755254e1e55913dede975924a1c14b4eafcd45fe (diff) |
Updater: Replace lintOptions with lint
* As per AS recommendation
Change-Id: Id3668f21f356f13dcce4576c528b8af06d77a95f
-rw-r--r-- | build.gradle | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/build.gradle b/build.gradle index 3a81f4d..8870389 100644 --- a/build.gradle +++ b/build.gradle @@ -28,11 +28,6 @@ android { targetSdkVersion 31 } - lintOptions { - ignore 'ProtectedPermissions' - // These depend on translations - ignore 'ExtraTranslation', 'ImpliedQuantity', 'MissingQuantity', 'MissingTranslation' - } sourceSets { main { @@ -55,6 +50,9 @@ android { storePassword keystoreProperties['storePassword'] } } + lint { + ignore 'ProtectedPermissions', 'ExtraTranslation', 'ImpliedQuantity', 'MissingQuantity', 'MissingTranslation' + } } dependencies { |