gradle
深入浅出Android Gradle构建系统(三:build task)
正确理解gradle assemble、assembleDebug、assembleRelease
What are the differences between gradle assemble and gradle build tasks?
问题
build时候遇到:
Execution failed for task ':utils:utility-io:lint'.
> Lint found errors in the project; aborting build.
在build.gralde中增加
android {
…略…
lintOptions{
abortOnError false
}