美文网首页猿码
Lint found fatal errors while as

Lint found fatal errors while as

作者: kongzue | 来源:发表于2018-12-17 13:33 被阅读36次

此问题发生在编译为 release 版本时,出现错误提示如下:

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

信他你就输了!
如果你真的去 build.gradle(app) 的 android{...} 中按照上述提示添加后,重新编译还遇到这个提示,请尝试按照以下方法解决:

android {
    buildTypes {
        release {
            //在这里添加:
            lintOptions {
                checkReleaseBuilds false
                abortOnError false
            }
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

搞定。
此问题多发生在老项目用新版本IDE编译时,具体原因待查。

相关文章

网友评论

    本文标题:Lint found fatal errors while as

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