disabling lint for the pulled in module
This commit is contained in:
parent
5058f942af
commit
abd70d953b
@ -22,3 +22,9 @@ android {
|
|||||||
dependencies {
|
dependencies {
|
||||||
implementation "com.android.support:appcompat-v7:28.0.0"
|
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
Block a user