Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can not run project after adding google play services to project

Tags:

android

I am making a android application with needs google map.

I created a new project in eclipse and compiled it on an android phone, it worked, but when I import the google-play-services_lib to my workspace and added a reference to it in my project, it doesn't compile, hangs up for a while with the status bar showing (launching project 100%) and displays an error "Unable to execute dex: Java heap space"

Update: I also tried changing the eclipse.ini file to increase memory limit to 512 and 1024, but no use

-startup
plugins/org.eclipse.equinox.launcher_1.2.0.v20110502.jar
--launcher.library
plugins/org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.100.v20110502
-product
org.eclipse.epp.package.java.product
--launcher.defaultAction
openFile
--launcher.XXMaxPermSize
1024M
-showsplash
org.eclipse.platform
--launcher.XXMaxPermSize
1024m
--launcher.defaultAction
openFile
-vmargs
-Dosgi.requiredJavaVersion=1.5
-Xms256m
-Xmx1024m

PS: searched alot before posting a question

like image 267
Frz Khan Avatar asked Jan 04 '14 09:01

Frz Khan


1 Answers

Conversion to Dalvik format failed: Unable to execute dex: Java heap space

The gist is: Keep increasing the Xms and Xmx values until it either works or you run out of physical memory.

in eclipse.ini

E.g.: -XX:MaxPermSize=1536m -Dosgi.requiredJavaVersion=1.5 -Xms40m -Xmx1536m

like image 103
Hardik Avatar answered Oct 14 '22 13:10

Hardik