error:Error:Unable to start the daemon process. This problem might be caused by incorrect configurat

有时候在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/3.3/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
只需要将gradle.properties中的
org.gradle.jvmargs=?修改为
org.gradle.jvmargs=-Xmx512m


你可能感兴趣的:(Android)