Invalid maximum heap size: -Xmx4g错误解决

来源:互联网 发布:淘宝新建员工 编辑:程序博客网 时间:2024/06/10 07:38

今天导了个项目编译可以,但是build APK的时候报如下错误,然后百度了好多

Warning:The `android.dexOptions.incremental` property is deprecated and it has no effect on the build process.

Error:Error: Could not create the Java Virtual Machine.
Error:Error: A fatal exception has occurred. Program will exit.
Error:Invalid maximum heap size: -Xmx4g
Error:The specified size exceeds the maximum representable size.
Error:Execution failed for task ':app:transformClassesWithDexForDebug'.

> com.android.build.api.transform.TransformException: com.android.ide.common.process.ProcessException: java.util.concurrent.ExecutionException: java.lang.UnsupportedOperationException

原来是build.gradle文件里

dexOptions {    /*incremental false*/    preDexLibraries = false    javaMaxHeapSize "4g"}
删除或者把4g改为1024m,解决问题,改完以后一定要先同步再编译运行...

感想:点击打开链接

0 0