1. 程式人生 > >Android studio release打包出現的問題

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
}