Android Plugin DSL Reference 参考文档 :
一、LintOptions#explainIssues 属性配置
LintOptions ( build.gradle#android#lintOptions ) 文档位置 : android-gradle-dsl/2.3/com.android.build.gradle.internal.dsl.LintOptions.html
1、配置简介
LintOptions#explainIssues 属性配置 用于配置 是否返回 Lint 检查中 , 检查出的问题的详解 ;
2、配置原型
LintOptions#explainIssues 属性配置原型 : boolean 类型 , 设置 true 或 false ;
boolean explainIssues
Returns whether lint should include explanations for issue errors.
(Note that HTML and XML reports intentionally do this unconditionally, ignoring this setting.)
返回lint是否应包含问题错误的解释。
(请注意,HTML和XML报告有意无条件地执行此操作,忽略此设置。)
3、使用示例
LintOptions#explainIssues 属性配置使用示例 :
lintOptions {
abortOnError false
fatal ('ContentDescription')
absolutePaths true
check 'ContentDescription'
checkAllWarnings true
checkReleaseBuilds true
disable 'UnusedResources'
enable 'ContentDescription'
explainIssues true
}
二、LintOptions#htmlOutput 属性配置
LintOptions ( build.gradle#android#lintOptions ) 文档位置 : android-gradle-dsl/2.3/com.android.build.gradle.internal.dsl.LintOptions.html
1、配置简介
LintOptions#htmlOutput 属性配置 用于配置 html 输出文件 ;
需要配置 File 对象 ;
2、配置原型
LintOptions#htmlOutput 属性配置原型 : File 类型对象 , 需要配置一个 Java 的 File 实例对象 , 使用 File(path) , 传入 文件路径 参数即可 ;
File htmlOutput
The optional path to where an HTML report should be written
编写HTML报告的可选路径
3、使用示例
LintOptions#htmlOutput 属性配置使用示例 :
lintOptions {
abortOnError false
fatal ('ContentDescription')
absolutePaths true
check 'ContentDescription'
checkAllWarnings true
checkReleaseBuilds true
disable 'UnusedResources'
enable 'ContentDescription'
explainIssues true
htmlOutput File('lint.html')
}
三、LintOptions#htmlReport 属性配置
LintOptions ( build.gradle#android#lintOptions ) 文档位置 : android-gradle-dsl/2.3/com.android.build.gradle.internal.dsl.LintOptions.html
1、配置简介
LintOptions#htmlReport 属性配置 用于配置 是否生成 html 输出文件 ;
默认配置为 true ;
2、配置原型
LintOptions#htmlReport 属性配置原型 : boolean 类型对象 , 设置 true 或 false ;
boolean htmlReport
Whether we should write an HTML report. Default true.
The location can be controlled by LintOptions.getHtmlOutput().
我们是否应该写一份HTML报告。默认为true。
该位置可由选项控制。getHtmlOutput()。
3、使用示例
LintOptions#htmlReport 属性配置使用示例 :
lintOptions {
abortOnError false
fatal ('ContentDescription')
absolutePaths true
check 'ContentDescription'
checkAllWarnings true
checkReleaseBuilds true
disable 'UnusedResources'
enable 'ContentDescription'
explainIssues true
htmlOutput File('lint.html')
htmlReport true
}
|