Android studio release打包出现的问题

打包的时候出现如下错误:

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
}

猜你喜欢

转载自blog.csdn.net/taowuhua0505/article/details/80264543
今日推荐