Reputation: 11
how to solve this? command ionic cordova build android
FAILURE: Build failed with an exception.
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/ 4.1/userguide/gradle_daemon.html
Error occurred during initialization of VM Could not reserve enough space for 2097152KB object heap
Upvotes: 1
Views: 636
Reputation: 309
Set the JAVA_OPTS system variable (-Xmszzzm -minimum , -Xmxzzzm - maximum)
JAVA_OPTS="-Xms128m -Xmx512m"
(set as per requirement)
...hope this will help you
Upvotes: 1