2

Ok. So, I am having a constant issue while trying to run my application to either the emulator or export a signed apk for testing. No matter what I do, I constantly get this issue: Issues 1

This is what the memory allocation looks like while it is trying to load: Issues 2 I have followed Every single how to: and advice guide I can, including the following links: 1) How can I increase the JVM memory? 2) Increase JVM max heap size for Eclipse 3) Conversion to Dalvik format failed: Unable to execute dex: Java heap space 4) http://wiki.eclipse.org/FAQ_How_do_I_increase_the_heap_size_available_to_Eclipse%3F

But no matter what I do, I cannot get it to work and I am pulling my hair out trying to make it work...

Here is a screenshot of my Eclipse.ini file below: Issues 3

Also, I have uninstalled and reinstalled the Eclipse ADT thinking that might fix it.

If someone can help me figure out what I am doing wrong, I would greatly appreciate the help as I have spent the past 6 hours trying to fix this so I can continue debugging even more issues :/

-Silmarilos

trincot
  • 317,000
  • 35
  • 244
  • 286
PGMacDesign
  • 6,092
  • 8
  • 41
  • 78

2 Answers2

0

I think you may had changed eclipse.exe file name.Just change back

zhenghuiyan
  • 324
  • 4
  • 10
0

try changing

-Xms4096m
-Xmx4096m

to

-Xmx1024m    //Half of your RAM
-Xms100m     // ~ Half of your RAM/10
Fahad
  • 193
  • 1
  • 9