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
}
...
}
网友评论