I'm using Eclipse + the Android SDK on a Mac running Snow Leopard to develop Android apps.

Thing is, Eclipse is really slow - like, it "beach balls" for a few seconds when changing tabs.

Is there anything I can do to improve it's performance?

link|improve this question

78% accept rate
Did you notice that your profile photo matches the subject of your post perfectly? ;-) – Adrian Grigore May 7 '10 at 8:15
I have tried a lot of tweaks on the eclipse.ini file but I still find Eclipse too slow. Hope you find a good solution! – Jan S. May 8 '10 at 16:17
feedback

3 Answers

up vote 28 down vote accepted

The solution: change the Java version used and increase the allocated memory.

Edit eclipse.ini - this file is located Eclipse.app/Contents/MacOS/eclipse.ini.

Change the following vars to use Java 1.6 and allocate more memory:

-Dosgi.requiredJavaVersion = 1.6
-Xms128m
-Xmx1024m

(Found originally here: http://www.codeweblog.com/eclipse-adt-mac-version-tab-to-switch-slow-solution/)

link|improve this answer
damn, thanks man. This was going to drive me crazy. – dgraziotin Aug 1 '10 at 10:18
definitely deserve the +1...btw impressing app (Cube) – Juri Aug 1 '10 at 16:42
Unfortunately this doesn't actually help. I did all the recommended things but it is still tremendously slow. I'm thinking to switch to a text-editor and a terminal. – Aleks N. Sep 8 '10 at 15:01
This did not help me, either. Does this still work for you morais or have you had to make any other changes? – dpk Nov 28 '10 at 23:41
1  
Hmm, it is fast again. The only change I did was disabling automatic build. Maybe that is the magic. – dpk Dec 21 '10 at 22:21
show 1 more comment
feedback

You can try some suggestions from this IBM developerWorks article

Search for the "Maximizing Eclipse performance on Mac OS X" section

link|improve this answer
feedback

1

The solution: change the Java version used and increase the allocated memory.

Edit eclipse.ini - this file is located Eclipse.app/Contents/MacOS/eclipse.ini.

Change the following vars to use Java 1.6 and allocate more memory:

-Dosgi.requiredJavaVersion = 1.6 -Xms128m -Xmx1024m (Found originally here: http://www.codeweblog.com/eclipse-adt-mac-version-tab-to-switch-slow-solution/)

that worked for me. :D I got it from above but didnt know how to post as reply :|

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.