Android 签名失败 Lint found fatal errors while assembling a release target.

错误信息:

Error:Execution failed for task ´:app:lintVitalRelease´.
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文件的android中添加上lintOptions,内容就是提示信息中的内容

    {
        android {
            compileSdkVersion 23
            buildToolsVersion '25.0.0'
            defaultConfig {
                applicationId "com.luzhiyao.sgongdoocar"
                minSdkVersion 14
                targetSdkVersion 23
                versionCode 5
                versionName "1.1.0"
            }
            buildTypes {
                release {
                    minifyEnabled false
                    proguardFiles getDefaultProguardFile('proguard-android.txt'), "proguard-rules.pro"
                }
            }
            // 添加上这一段代码就可以了
            lintOptions {
                checkReleaseBuilds false
                abortOnError false
            }
        }
    }

你可能感兴趣的:(Android 签名失败 Lint found fatal errors while assembling a release target.)