android studio Error:Unable to start the daemon process【转】

本文转载自:https://blog.csdn.net/dhx20022889/article/details/44919905

我在用android studio 做一个小项目,在家里的mac电脑中创建项目,并同步到coding.net中。

到公司电脑中下拉此项目,并通过android studio打开,可打开后的项目报如下错误:

[java] view plain copy
 
  1. Error:Unable to start the daemon process.  
  2. This problem might be caused by incorrect configuration of the daemon.  
  3. For example, an unrecognized jvm option is used.  
  4. Please refer to the user guide chapter on the daemon at http://gradle.org/docs/2.2.1/userguide/gradle_daemon.html  
  5. Please read the following process output to find out more:  
  6. -----------------------  
  7. Error occurred during initialization of VM  
  8. Could not reserve enough space for object heap  
  9. Error: Could not create the Java Virtual Machine.  
  10. Error: A fatal exception has occurred. Program will exit.  


当然,试图编译或运行,都是不成功的。

经google发现,原来android studio是通过gradle对项目配置的,而系统中没有对android studio 的默认配置,就像Eclipse中的eclipse.ini文件。

解决方法:

在操作系统当前用户的.gradle文件夹下:C:UsersAdministrator.gradle 设置gradle.properties,若无就新增。

在文件中添加如下配置信息:

[plain] view plain copy
 
  1. org.gradle.jvmargs=-Xmx512m  


重启项目,问题解决。

原文地址:https://www.cnblogs.com/zzb-Dream-90Time/p/9182297.html