Error:Unable to start the daemon process. This problem might be caused by incorrect configuration of ......
- 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 http://gradle.org/docs/2.2.1/userguide/gradle_daemon.html
- Please read the following process output to find out more
方法一:
这个错误是编译时出现的错误,你将安装C盘的.gradle目录删除掉,不要担心删除会有什么问题。大胆的删!在清理下,它就会自动生成,问题解决.。 (经google发现,原来android studio是通过gradle对项目配置的,而系统中没有对android studio 的默认配置,就像Eclipse中的eclipse.ini文件)
解决方法:
在操作系统当前用户的.gradle文件夹下:C:\Users\Administrator.gradle 设置gradle.properties,若无就新增。
在文件中添加如下配置信息:
org.gradle.jvmargs=-Xmx512m
方法二:
新建系统变量
变量名 _JAVA_OPTIONS
变量值 -Djava.net.preferIPv4Stack=true
网上的方法修改或者配置gradle文件没有成功解决的可以试试这个方法!
参考连接:
第一种方式:
(https://blog.csdn.net/u010039540/article/details/52998093)
第二种方式:
(https://blog.csdn.net/like_lgg/article/details/79140064)
网友评论