saneta
saneta

Reputation: 11

FAILURE Build failed with an exception

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

Please read the following process output to find out more:

Error occurred during initialization of VM Could not reserve enough space for 2097152KB object heap

Upvotes: 1

Views: 636

Answers (1)

Abid Khan
Abid Khan

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

Related Questions