BUG
* What went wrong:
Unable to start the daemon process.
This problem might be caused by incorrect configuration of the daemon.
For example, an unrecognized jvm option is used.
Please refer to the user guide chapter on the daemon at https://docs.gradle.org/4.1/userguide/gradle_daemon.html
Please read the following process output to find out more:
-----------------------
Error: Could not create the Java Virtual Machine.
Error: A fatal exception has occurred. Program will exit.
Invalid maximum heap size: -Xmx8704M
The specified size exceeds the maximum representable size.
解决方法:
在操作系统当前用户的.gradle文件夹下:C:\Users\Administrator.gradle 设置gradle.properties,若无就新增。
在文件中添加如下配置信息:
org.gradle.jvmargs=-Xmx512m
本文介绍了当使用Gradle构建项目时遇到无法启动守护进程的问题及其解决办法。问题的根源在于指定的最大堆内存超过了系统限制。文章提供了具体的解决步骤,包括如何在用户的.gradle文件夹下配置gradle.properties文件,通过调整-Xmx参数来降低最大堆内存。
4880

被折叠的 条评论
为什么被折叠?



