AS打包release出现的问题
程序员文章站
2022-06-24 18:30:11
当你好不容易写完一个安卓程序,却发现打包release的时候出现了错误,是不是很崩溃呢,今天我就遇到了这样一个错误:org.gradle.api.GradleException: 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 {lin...
当你好不容易写完一个安卓程序,却发现打包release的时候出现了错误,是不是很崩溃呢,今天我就遇到了这样一个错误:
org.gradle.api.GradleException: 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,并添加如下的代码
android{
lintOptions {
checkReleaseBuilds false
abortOnError false
}
}
本文地址:https://blog.csdn.net/Antiope/article/details/107598602
下一篇: java设计模式单例和观察者
推荐阅读
-
Microsoft Visual Studio 2010 Ultimate 下安装wcsf 2010出现问题的解决方法
-
解决cordova+vue 项目打包成APK应用遇到的问题
-
解决Vue2.0中使用less给元素添加背景图片出现的问题
-
解决vue-cli项目webpack打包后iconfont文件路径的问题
-
解决在vue项目中webpack打包后字体不生效的问题
-
解决Vue 项目打包后favicon无法正常显示的问题
-
vue-cli2打包前和打包后的css前缀不一致的问题解决
-
mysql8.0版本skip-grant-tables出现的新问题
-
JSP MySQL插入数据时出现中文乱码问题的解决方法
-
Myeclipse 8.x 之后的插件怎么安装为什么总是出现问题