Android Studioを起動すると何故か以下のエラーが発生
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.
。。。。。。。省略
Error occurred during initialization of VM
Could not reserve enough space for 1572864KB object heap
ヒープ用の十分なスペースが足りないってメッセージが表示されている。。。
調査した結果 gradle.properties の内容に問題があるらしい
gradle.properties を修正
修正前:org.gradle.jvmargs=-Xmx1536m
修正後:org.gradle.jvmargs=-Xmx1024m
上記修正により正常に動作する事を確認。