AndroidStudio打包apk出现的问题 `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 

}


如果确认可以忽略lint检查出来的错误,可以做如下设置:

app.gradle中的android中加入

lintOptions {
    checkReleaseBuilds false
    abortOnError false
}

发布了68 篇原创文章 · 获赞 11 · 访问量 13万+

猜你喜欢

转载自blog.csdn.net/ddddwwww2/article/details/53537027
今日推荐