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
}
}
...
如果我遵循建议,那么将创建所有 apk。但是这个错误是什么?因为什么?可能有什么后果?
在构建应用程序的发布版本时,androidLint 会查找错误,如果找到,则构建失败。因此,为您提供了两个选项 - 修复androidLint发现的代码中的所有错误,或关闭错误构建失败的选项。