錯(cuò)誤信息:
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
}
}
解決方案:
實(shí)際上解決方案已經(jīng)在錯(cuò)誤信息中給出來了锈拨,要求你在build.gradle文件的android中添加上lintOptions,內(nèi)容就是提示信息中的內(nèi)容
{
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
}
}
}