安卓应用sync失败,报错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.


This problem might be caused by incorrect configuration of the daemon.
For example, an unrecognized jvm option is used.)

Android Studio在导入应用时,有时会sync失败,报错如下:
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/4.6/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 1048576KB object heap

翻译如下:
无法启动守护进程。
这个问题可能是由于守护进程的错误配置造成的。
例如,使用了无法识别的jvm选项。
初始化虚拟机时出错
无法为1048576KB对象堆保留足够的空间。

解决方法

在Gradle Script目录下有gradle配置文件gradle.properties
在这里插入图片描述
打开gradle.properties文件,其中有一行代码,如下。当把它改成2048m时,还是会报错显示的数字又比2048大。
当改成512m时,build成功了。

org.gradle.jvmargs=-Xmx1024m

PS:第一次写博客,还不太会用markdownPad,慢慢记录

Logo

为开发者提供学习成长、分享交流、生态实践、资源工具等服务,帮助开发者快速成长。

更多推荐