Android Studio Gradle project sync failed

使用Android Studio 1.1.0创建新项目后,运行报以下错:

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.

http://stackoverflow.com/questions/23663299/android-studio-gradle-project-sync-failed

解决方法:

1. 修改文件

Just a blind guess: try to add something like this to your gradle.properties file in the project:

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

2. 修改软件设置

File -> Settings -> Compiler (Gradle-based Android Projects)

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

原文地址:https://www.cnblogs.com/imzhstar/p/4434143.html