Unable to start the daemon process.解决办法

来源:互联网 发布:windows易升自动关机 编辑:程序博客网 时间:2024/05/22 05:11

比较老的机器,内存只有3.5G,安装AS后,新建项目出现

Error: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/2.14.1/userguide/gradle_daemon.html
Please read the following process output to find out more:
-----------------------
Error occurred during initialization of VM
Could not reserve enough space for 1572864KB object heap


主要是这个原因:最大分配的内存由-Xmx指定,堆内存。修改方法


1.打开AS,选择project,gradle.properties



2. 修改jvmargs值如下:

    org.gradle.jvmargs=-Xmx1024m

    3. 重启AS

原创粉丝点击