Error:Unable to start the daemon process. This problem might be caused by incorrect configuration解决
错误提示如下:
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/3.5/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=-Xmx512m
修改完毕,刷新一下就好(clean,rebuild,sync都行)