android 错误Error:Execution failed for task ':app:lintVitalRelease'.>

来源:互联网 发布:乐乎硬盘 编辑:程序博客网 时间:2024/06/01 10:39
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{    lintOptions {        checkReleaseBuilds false        abortOnError false    }}
参考:
http://blog.csdn.net/qq_21376985/article/details/52384683

阅读全文
0 0