Android Plugin DSL Reference 参考文档 :
LintOptions ( build.gradle#android#lintOptions ) 文档位置 : android-gradle-dsl/2.3/com.android.build.gradle.internal.dsl.LintOptions.html
LintOptions#abortOnError 配置 用于设置 当编译时遇到错误 是否需要退出 ;
LintOptions#abortOnError 配置原型 : 该配置是 布尔值类型的 ;
boolean abortOnError
Whether lint should set the exit code of the process if errors are found
LintOptions#abortOnError 配置使用示例 :
android {
lintOptions {
// 编译时遇到错误, 停止编译
abortOnError true
}
}
在 Android Studio 中的 执行
gradlew :app:lintDebug
命令 , 执行 lint 检查 , 命令行输出 :
Y:\002_WorkSpace\001_AS\SVG>gradlew :app:lintDebug
> Task :app:compileDebugKotlin
w: Y:\002_WorkSpace\001_AS\SVG\app\src\main\java\kim\hsl\svg\MainActivity.kt: (16, 44): 'getDrawable(Int): Drawable!' is deprecated. Deprecated in Java
> Task :app:lintDebug
Wrote HTML report to file:///Y:/002_WorkSpace/001_AS/SVG/app/build/reports/lint-results-debug.html
Wrote XML report to file:///Y:/002_WorkSpace/001_AS/SVG/app/build/reports/lint-results-debug.xml
BUILD SUCCESSFUL in 1m 2s
18 actionable tasks: 3 executed, 15 up-to-date
根据输出日志 ,
> Task :app:lintDebug
Wrote HTML report to file:///Y:/002_WorkSpace/001_AS/SVG/app/build/reports/lint-results-debug.html
Wrote XML report to file:///Y:/002_WorkSpace/001_AS/SVG/app/build/reports/lint-results-debug.xml
最终生成的 lint 检查报告输出在 Y:/002_WorkSpace/001_AS/SVG/app/build/reports/lint-results-debug.html 路径中 , 使用 浏览器打开该 html 页面 ;