码迷,mamicode.com
首页 > 移动开发 > 详细

升级完Android Studio3.2后,打包release出现的错误

时间:2018-10-16 13:49:44      阅读:785      评论:0      收藏:0      [点我收藏+]

标签:ide   bsp   error   2.3   The   continue   ons   tin   代码   

升级完Android Studio2.3后,打包release出现的错误

Error:Execution failed for task ‘:qq: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
        }
}

 

解决方法:
在app的build.gradle中添加如下代码

android{
        lintOptions {
                checkReleaseBuilds false
                abortOnError false
        }
}

升级完Android Studio3.2后,打包release出现的错误

标签:ide   bsp   error   2.3   The   continue   ons   tin   代码   

原文地址:https://www.cnblogs.com/suxiaoqi/p/9797156.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!