您的位置:首页 > 移动开发

【Android】AndroidStudio打包apk出现的一些问题 `Error:Execution failed for task ':app:lintVitalRelease'.

2016-10-27 00:00 1431 查看
作者:程序员小冰,CSDN博客:http://blog.csdn.net/qq_21376985
QQ986945193 公众号:程序员小冰

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{
lintOptions {
checkReleaseBuilds false
abortOnError false
}
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐