打包错误:`Error:Execution failed for task ':app:lintVitalRelease'.

错误代码:
`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
}

}`


解决办法如提示:

lintOptions {
    checkReleaseBuilds false
    abortOnError false
}

你可能感兴趣的:(安卓开发,android,studio,as,打包)