Lint found fatal errors while assembling a release target.

我们经常在打包项目的时候会提示如下错误:

Lint found fatal errors while assembling a release target.

as自己给出的解决建议如下:

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/reports/lint-results-yourBuildName-fatal.html这个文件了,我们找到这个文件使用浏览器打开就可以看到具体的错误信息了,效果如下图:

Lint found fatal errors while assembling a release target._第1张图片

在这里就知道具体错误,这样就方便我们解决问题了。

你可能感兴趣的:(Android问题及解决)