build.gradle: Move 'lintOptions' further down.

This commit is contained in:
Andreas Schildbach 2019-10-26 22:43:19 +02:00
parent 7a338bd849
commit b3ef02c5bc

View file

@ -29,11 +29,6 @@ android {
compileSdkVersion 'android-29'
buildToolsVersion '29.0.2'
lintOptions {
abortOnError false
disable 'MissingTranslation'
}
defaultConfig {
generatedDensities = ['hdpi', 'xhdpi']
}
@ -85,6 +80,11 @@ android {
targetCompatibility JavaVersion.VERSION_1_8
}
lintOptions {
abortOnError false
disable 'MissingTranslation'
}
packagingOptions {
exclude 'META-INF/*.version'
exclude 'META-INF/proguard/**'