1,错误代码:
`Error:Execution failed for task ‘:app:lintVitalRelease’.
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
}
}`
解决方法:
在app的build.gradle里的android{}中添加如下代码,然后再次运行Generate Signed Apk。例如:
本文介绍了一种常见的Android构建过程中遇到的Lint错误,并提供了具体的解决办法。通过修改build.gradle文件中的lintOptions设置,可以避免因为Lint检测到的问题而阻止构建过程。

4万+

被折叠的 条评论
为什么被折叠?



