disabling lint for the pulled in module
This commit is contained in:
parent
5058f942af
commit
abd70d953b
|
@ -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
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue