Android Studio Gradle 项目同步失败

我收到错误:“Gradle 项目同步失败。基本功能(例如,eiditing)将无法正常工作。

和错误日志:

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/1.10/userguide/gradle_daemon.html 
Please read below process output to find out more:
    ----------------------- 
Error occurred during initialization of VM Could not reserve enough space for object heap Error: Could not create the Java Virtual Machine. 
Error: A fatal exception has occurred. Program will exit.

我试图删除.gradle文件夹,因为我在这里阅读。这在昨天工作,但今天当我启动Android Studio时,错误再次显示,删除.gradle文件夹没有帮助。

我真的不知道该怎么办。

有人有什么建议吗?


答案 1

只是一个盲目的猜测:尝试将这样的东西添加到项目中的gradle.properties文件中:

org.gradle.jvmargs=-Xmx512m -XX:MaxPermSize=512m

答案 2

在安卓工作室中解决同样的问题

文件 -> 设置 -> 编译器(基于 Gradle 的 Android 项目)

Change the "**VM options**" to 
-Xmx512m -XX:MaxPermSize=512m

它对我有用。


推荐