APK打包,报错Lint found fatal errors
2020-04-15 本文已影响0人
浩仔_Boy
APK打包报下面错误
Lint found fatal errors while assembling a release target.
To proceed, either fix the issues identified by lint, or modify your build script as follows:
...
android {
lintOptions {
checkReleaseBuilds false
// Or, if you prefer, you can continue to check for errors in release builds,
// but continue the build even when errors are found:
abortOnError false
}
}
...
解决方法:
image.png在app/build/resports下面找到这个两个文件,浏览器打开其中的.html文件,可以找到具体的报错位置。
image.png