打包的时候出现如下错误:
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
}