美文网首页
android studio 打包release出现的错误

android studio 打包release出现的错误

作者: sybil052 | 来源:发表于2019-01-09 17:25 被阅读0次

今天给项目打包apk,出现以下错误:

Error:Execution failed for task 'xxx'.
> 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中添加如下代码,重新Generate Signed APK

android{
    lintOptions {
        checkReleaseBuilds false
        abortOnError false
    }
}

相关文章

网友评论

      本文标题:android studio 打包release出现的错误

      本文链接:https://www.haomeiwen.com/subject/covgrqtx.html