1、报错:Error:Error: Expected a color resource id (R.color.) but received an RGB integer [ResourceType]
解决办法:在modle的build.gradle里面添加如下代码
lintOptions {
disable 'ValidFragment'
}
2、报错:Error:Error: This fragment should provide a default constructor (a public constructor with no arguments) [ValidFragment]
解决办法:
lintOptions {
disable 'ValidFragment'
}
3、或者统一的解决办法:
lintOptions {
checkReleaseBuilds false
}
这些都是偷懒的方法,忽略了这些检测,正确做法应该是按着提示对代码进行优化。
从stackoverflow上扒了一个lintOptions的配置。
android {
lintOptions {
// true
quiet true
// true
abortOnError false
// true
ignoreWarnings true
// true
//absolutePaths true
// true
checkAllWarnings true
// true
warningsAsErrors true
// 关闭指定问题检查
disable 'TypographyFractions','TypographyQuotes'
// 打开指定问题检查
enable 'RtlHardcoded','RtlCompat', 'RtlEnabled'
// 仅检查指定问题
check 'NewApi', 'InlinedApi'
// true
noLines true
// true
showAll true
// 回退lint设置(默认规则)
lintConfig file("default-lint.xml")
// true
textReport true
// 重定向输出;可以是文件或'stdout'
textOutput 'stdout'
// true
xmlReport false
// 指定xml报告文档(默认lint-results.xml)
xmlOutput file("lint-report.xml")
// true
htmlReport true
// html报告可选路径(构建器默认是lint-results.html )
htmlOutput file("lint-report.html")
// true
checkReleaseBuilds true
// 在发布版本编译时检查(即使不包含lint目标),指定问题的规则生成崩溃
fatal 'NewApi', 'InlineApi'
// 指定问题的规则生成错误
error 'Wakelock', 'TextViewEdits'
// 指定问题的规则生成警告
warning 'ResourceAsColor'
// 忽略指定问题的规则(同关闭检查)
ignore 'TypographyQuotes'
}
}