我试图在模拟器上运行我的应用程序,但是当我尝试时出现此错误:

Error:Failed to complete Gradle execution.

Cause:
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/2.10/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 object heap
Error: Could not create the Java Virtual Machine.
Error: A fatal exception has occurred. Program will exit.

我在堆栈溢出中查找了其他人遇到的确切问题,但没有任何帮助。有人能帮我吗 ?

最佳答案

好吧,只需阅读错误消息:



明显。



现在,这是一个有用的提示。

与此结合:



该错误表明您设置不正确。也许您不小心更改了Java的VM堆选项。

也许this是解决您问题的方法,它告诉您如何更改androidstudio的堆大小。

如果这不起作用,请确保您已安装最新版本的android JDK / JRE。如果您告诉我们您已经尝试过什么以及有关计算机的一些规格,可能会有所帮助。如果您只有512MB RAM,那么更改堆大小将无济于事;)

关于android - Android Studio Gradle不起作用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/37931614/

10-15 11:15