Lint found fatal errors while assembling a release target. 解决办法

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
    }
}
...

打包出错除了上面的信息,找到对应的Android工程下的

app/build/reports/lint-results-release-fatal.html 文件

打开后可以看到问题的详细原因:
Lint found fatal errors while assembling a release target. 解决办法_第1张图片

同理,改掉就好了

你可能感兴趣的:(总结)