From the Android Tools Project Site's Android Gradle Plugin User Guide I'm aware that it's possible to prevent Android's lint from aborting a build using:
lintOptions {
abortOnError false
}
I'm also aware that lint can be disabled for release builds:
lintOptions {
checkReleaseBuilds false
}
However, is it possible to completely disable lint when running e.g. gradle assembleDebug
?
I'm aware of the risks and for this particular project it is wasting a fair amount of time given all the build flavors we have.