美文网首页
React-Native打包异常收集

React-Native打包异常收集

作者: 幻雪之恋_0414 | 来源:发表于2018-12-06 10:04 被阅读0次

    1.java.lang.OutOfMemoryError: GC overhead limit exceeded异常

    • 有类似提醒:
      com.android.build.api.transform.TransformException: com.android.ide.common.process.ProcessException
      java.util.concurrent.ExecutionException: com.android.ide.common.process.ProcessException
    • 解决方法:
      在项目build.gradle下加入
    android{
      ...
      dexOptions{
          javaMaxHeapSize "4g"
          incremental true
       }
      ...
    }
    

    相关文章

      网友评论

          本文标题:React-Native打包异常收集

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