disabling lint for the pulled in module

This commit is contained in:
Adam Brown 2022-09-15 16:08:46 +01:00
parent 5058f942af
commit abd70d953b
1 changed files with 6 additions and 0 deletions

View File

@ -22,3 +22,9 @@ android {
dependencies {
implementation "com.android.support:appcompat-v7:28.0.0"
}
afterEvaluate {
tasks.findAll { it.name.startsWith("lint") }.each {
it.enabled = false
}
}