计算机知识分享网

【android】Android Studio编译apk时报错

当我们编译或者打包时,报错如下:
Error:Execution failed for task 'xxx'.
> 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.gradle中添加如下代码,重新Generate Signed APK
android{
    lintOptions {
        checkReleaseBuilds false
        abortOnError false
    }
}

#Android