ANDROID打包错误ERROR:EXECUTION FAILED FOR TASK ´:APP:LINTVITALRELEASE´.

转贴地址:https://blog.csdn.net/a791404623/article/details/72850809

错误信息

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里面添加一个配置、在app的build.gradle里的android{}中添加如下代码、然后再次运行Generate Signed Apk就正常了

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 getDefaultProguardFileproguard-android.txt´), ´proguard-rules.pro´
        }
    }

    //添加如下配置就ok
    lintOptions {
        checkReleaseBuilds false
        abortOnError false
    }
}

猜你喜欢

转载自blog.csdn.net/ArimaKisho/article/details/80829601
今日推荐