Android:Lint found fatal errors

2018-06-22  本文已影响0人  你是认真滴

错误信息如下:
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:

出现错误的原因:在打release包时,Build提示了错误

解决办法,它已经给出了解决方案,在gradle的android{ }节点下配置如下代码:
lintOptions {
    //build release 版本 时 关闭lint 检测
    checkReleaseBuilds false
    //lint 遇到 error 时继续 构建
    abortOnError false
}

END。

上一篇下一篇

猜你喜欢

热点阅读