move lintOptions to lint block

Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
This commit is contained in:
Andy Scherzinger 2022-05-18 18:28:04 +02:00
parent d3827aac9f
commit 2c2d4aa306
No known key found for this signature in database
GPG Key ID: 6CADC7E3523C308B

View File

@ -132,16 +132,16 @@ android {
targetCompatibility JavaVersion.VERSION_1_8
}
lintOptions {
abortOnError false
htmlReport true
htmlOutput file("$project.buildDir/reports/lint/lint.html")
disable 'MissingTranslation'
}
buildFeatures {
viewBinding true
}
lint {
abortOnError false
disable 'MissingTranslation'
htmlOutput file("$project.buildDir/reports/lint/lint.html")
htmlReport true
}
}
ext {