其他分享
首页 > 其他分享> > Lint found fatal errors while assembling a release target问题的解决方案

Lint found fatal errors while assembling a release target问题的解决方案

作者:互联网

转:https://www.cnblogs.com/ring1992/p/11313560.html

 

此问题发生在编译为 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
    }
}
...
复制代码

按照上述提示添加后,重新编译还遇到这个提示,请尝试按照以下方法解决:

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

标签:errors,false,target,Lint,abortOnError,assembling,release,found,android
来源: https://www.cnblogs.com/CipherLab/p/16497047.html