problems when compiling android project on ionic

1

I have a project created on ionic, which at the time of compiling gives me the following error

I have tried everything, uninstalling and installing everything again, but nothing turns out.

    
asked by elsa 26.07.2017 в 01:29
source

1 answer

1

One of the situations by which the DAEMON process can not be executed is precisely what is shown in the message, memory so that the VM can work properly.

  

Error occurred during initialization of VM Could not book enough   space for ... object heap

In this case you have to increase the memory, you can do it within your gradle.properties file, add:

org.gradle.jvmargs=-Xmx1024m -XX:MaxPermSize=256m

Precisely in the Ionic forum there is a thread related to this problem:

link

    
answered by 26.07.2017 в 02:27