美文网首页
APK打包,报错Lint found fatal errors

APK打包,报错Lint found fatal errors

作者: 浩仔_Boy | 来源:发表于2020-04-15 10:48 被阅读0次
APK打包报下面错误
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
   }
}
...
解决方法:
image.png

在app/build/resports下面找到这个两个文件,浏览器打开其中的.html文件,可以找到具体的报错位置。


image.png

相关文章

网友评论

      本文标题:APK打包,报错Lint found fatal errors

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