Skip to content

Commit

Permalink
disabling lint for the pulled in module
Browse files Browse the repository at this point in the history
  • Loading branch information
ouchadam committed Sep 15, 2022
1 parent b91f14a commit 9b56ee6
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions library/dialpad/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,10 @@ android {
jvmTarget = "11"
}
}

afterEvaluate {
tasks.findAll { it.name.startsWith("lint") }.each {
println("${it.class.name}")
it.enabled = false
}
}

0 comments on commit 9b56ee6

Please sign in to comment.