When I change any .java file and build, the compilation takes 16 seconds. I don't understand why it should be so slow!?

I enabled verbose output for Andoroid.

Window > Preferences > Android > Build output > Verbose.

The result output (Console > Android) is:

[19:46:10] Refreshing resource folders.
[19:46:10] Starting incremental Pre Compiler: Checking resource changes.
[19:46:10] Nothing to pre compile!
[19:46:10] Starting incremental Package build: Checking resource changes.
[19:46:10] ignored resource ...\bin\.\classes.dex
[19:46:10] processing ...\A.class
[19:46:10] processing ...\B.class
    ...
[19:46:21] processing com/google/inject/util/Providers.class...
[19:46:21] processing com/google/inject/util/Types.class...
[19:46:24] Using default debug key to sign package
[19:46:24] Packaging ...\bin\resources.ap_
[19:46:24] Packaging classes.dex
    ...
[19:46:25] Packaging ...\annotations.jar
[19:46:25] Build Success!
[19:46:25] Refreshing resource folders.
[19:46:25] Starting incremental Pre Compiler: Checking resource changes.
[19:46:26] Nothing to pre compile!

The "processing" of .class files took 14 seconds. And it "processed" all files, even from all .jar files linked. I think some thing wrong goes here, as only one .java file was changed.

What can I do to improve the compilation speed?

link|improve this question

67% accept rate
1  
What size is your APK ending up as? If its big then it will take Eclipse time to compile it even if you only change one file. – Donal Rafferty May 21 '10 at 16:53
~800 KB - is this big? – alex2k8 May 21 '10 at 18:09
BTW, it does not make sense for me that bigger project should be longer to compile... If A depends on B, and I change A, why to recompile B? I guess ("processing" in log stands for compile). I agree, packaging can be longer, but compilation theoretically should not depend on the size of the project when I change just one file. – alex2k8 May 21 '10 at 18:21
My target SDK was at level 4 (Android 1.6) and I was fine. I first started noticing this problem when I switched to level 10 (Android 2.3.3), so as to include features released in that version. I have now switched back to level 4 because the slowness was too much to bear (though I still compile my release apps in Ant at level 10). I tried levels between 4 and 10 that were available, to see where this was introduced, and it appears it started at level 8 (Android 2.2), so before level 8, the compilation speed is fine, on level 8 or later, you may have to optimize eclipse in other ways. – ubzack Jan 30 at 20:19
feedback

2 Answers

up vote 23 down vote accepted

I think there's a misunderstanding here. As you say, only the modified classes are recompiled (by Eclipse in a matter of milliseconds); after that, however, the ADT plugin takes every compiled class and translates it into Dalvik's bytecode format via the dx tool. The output of this process is a single file, classes.dex, which contains all the classes in your application, including the ones coming from referenced libraries. This last "translation" step is the one that takes longer because it's really poorly optimized: the ADT plugin doesn't cache anything, it just retranslates every class at every build (and it's painfully slow). For medium to big projects this gets really frustrating... I hope Google will improve that in a future ADT/SDK release.

link|improve this answer
Seems to be so :-( – alex2k8 Sep 21 '10 at 21:27
3  
On a side note you can disable automatic build in "Project" -> "Build Automatically". Then it will only fully build during application launch, so it will not slow down the Eclipse UI while you work on the code every time you save a file. – jmbouffard Sep 2 '11 at 15:24
feedback

One other workaround is:

  • disable the Android Package Builder (right-click on project#Properties#Builders)
  • use ant for build and deployment of apk

see android-workaround-for-slow-building-workspace-problem-in-eclipse for details

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.