android studio Error:Unable to start the daemon pr

2019-02-17 10:12发布

Version of Android Studio 2.2 OS version: Windows 10 Java JRE/JDK version: 1.8.0_51

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

4条回答
Fickle 薄情
2楼-- · 2019-02-17 10:33

In your project file\platforms\android\cordova\lib\builders\GradleBuilder.js Search for args.push and search for the line with the below description. Mine was Xmx2048m. I changed to Xmx1024m and it worked. 16MB of RAM in my pc. Change

args.push('-Dorg.gradle.jvmargs=-Xmx1024m'); 
查看更多
干净又极端
3楼-- · 2019-02-17 10:42

add this line instead of following line in gradle.properties file

comment this line #org.gradle.jvmargs=-Xmx1536m

add this line

org.gradle.jvmargs=-Xmx512m -XX:MaxPermSize=512m
查看更多
趁早两清
4楼-- · 2019-02-17 10:47

Im using Android studio version 2.2.2 on win 10 (32 bit) and this is how i fix this issue:

  1. Open your newly created project.
  2. Now open gradle.properties and change the JVM argument. i.e org.gradle.jvmargs=-Xmx1024m Basically it comes with default value of -Xm1536m which somehow is not working (at least for me).
  3. Then Rebuild the project and it should work.
查看更多
Summer. ? 凉城
5楼-- · 2019-02-17 10:54

Try deleting your .gradle from C:\Users\<username> directory and try again.

查看更多
登录 后发表回答