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

来源:互联网 发布:雪梨在淘宝上直播吗 编辑:程序博客网 时间:2024/06/06 03:58
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      }  }  ...appbuild中添加下面的两句话就好了,其实错误里面已经提示出来了,仔细看就能发现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    }}
阅读全文
0 0