您的位置:首页 > 移动开发

Mr.Smile填坑记——打release包报错Error:Execution failed for task ´:app:lintVitalRelease´.

2017-07-27 13:41 567 查看
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
}
}
...

在app的build中添加下面的两句话就好了,其实错误里面已经提示出来了,仔细看就能发现

android {
compileSdkVersion 23
buildToolsVersion ´25.0.0´

defaultConfig {
applicationId ""
minSdkVersion 14
targetSdkVersion 23
versionCode 5
versionName "1.1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile(´proguard-android.txt´), ´proguard-rules.pro´
}
}

//添加如下配置就ok了
lintOptions {
checkReleaseBuilds false
abortOnError false
}
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  打包
相关文章推荐