Gradle编译BUG处理
2016-07-02 本文已影响41人
微小码
BUG截图
Paste_Image.png解决方案
设置一
Paste_Image.pnggradle.projectsEvaluated
{
tasks.withType(JavaCompile) {
options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
}
}
设置二
Paste_Image.pnglintOptions {//设置编译的lint开关,程序在buid的时候,会执行lint检查,有任何 的错误或者警告提示,都会终止构建
abortOnError false
}