页面正在维护...

Gxiaoxi

博客园 首页 新随笔 联系 订阅 管理

今日在下载了别人的demo后,编译到我的手机上,然后通过qq等把软件发到其他的手机上使用时,无法安装,好像是因为这个是调试版本才安装不上,在网搜了一堆资料怎么建key怎么发布正式的版本,问题现在已解决,这写下随笔以记录下解决问题的瞬间。

报错信息:

FAILURE: Build failed with an exception.

* What went wrong:
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
      }
  }
  ...

解决办法其实上面都有了,可我还是搜了[尴尬][尴尬]。

 

lintOptions{
        checkReleaseBuilds false
        abortOnError false
}

 

在build.gradle(:app)里加入以上这段代码就能打包正式版本了

 

posted on 2020-07-13 17:14  世界如此简单  阅读(339)  评论(0编辑  收藏  举报