升级完Android Studio3.2后,打包release出现的错误

升级完Android Studio2.3后,打包release出现的错误

Error:Execution failed for task ':qq: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
        }
}

 

解决方法:
在app的build.gradle中添加如下代码

android{
        lintOptions {
                checkReleaseBuilds false
                abortOnError false
        }
}

posted @ 2018-10-16 11:54  苏小七  阅读(4742)  评论(0编辑  收藏  举报