Error:Unable to start the daemon process.解决

导入一个项目出现了以下错误:

Error:Unable to start the daemonprocess. 
This problem might be caused by incorrect configuration of the daemon. 
For example, an unrecognized jvm option is used. 

 

解决步骤:

1、修改项目中gradle.properties文件,只要添加以下一行代码:

org.gradle.jvmargs=-Xmx512m

2、重启Android Studio


-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------


还有一次还是碰到这个问题,但解决不太一样,但原理类似,就一起分享了:

作如下操作:


1、在gradle.properties中将箭头的那句代码前面加上“#”注释掉即可:

Error:Unable to start the daemon process.解决_第1张图片


修改后:

Error:Unable to start the daemon process.解决_第2张图片


2、最后try again或者clear project就好了。

原因:

org.gradle.jvmargs=-Xmx2048m-XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8

这句话的目的是:Gradle的jvm的内存分配设置,注释掉就是使用默认或者系统配置。


你可能感兴趣的:(as使用问题)