安卓报错:Unable to start the daemon process

今天,打开Android Studio新建一个项目,突然就报出如下的错误,从错误提示中可以看出内存空间不足引起的。

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

gradle.properties文件中一开始是这样的:

org.gradle.jvmargs=-Xmx1536m

修改为

org.gradle.jvmargs=-Xmx512m

修改完成后,再重新开启Android Studio即可。

猜你喜欢

转载自blog.csdn.net/fu_jian_ping/article/details/84921521
今日推荐