Fork me on GitHub

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

作者:程序员小冰,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
    }
}
posted @ 2016-08-31 14:23  程序员小冰  阅读(1919)  评论(0编辑  收藏  举报


Fork me on GitHub