美文网首页
Android 签名失败 Lint found fatal e

Android 签名失败 Lint found fatal e

作者: 晓风残月酒醒 | 来源:发表于2018-09-04 17:22 被阅读0次

错误信息:

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 e

      本文链接:https://www.haomeiwen.com/subject/qbhnwftx.html