AndroidStudioを利用していて、ビルドする際に以下のようなエラーが発生した場合の対象方法です。
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:
----------------------
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のJavaヒープサイズが確保できたいないためにエラーとなっています。
AndroidStudioから直接gradle.propertiesを編集できるので、ここでヒープサイズを調整します。
Project>Gradle Scripts>gradle.properties
# JVM起動オプションの設定
org.gradle.jvmargs=-Xms512m -Xmx1024m
その他の起動オプションもスペース区切りで指定することが可能です。