After adding Google Guava r09 to our Android project the build time increased significantly, especially the DEX generation phase. I understand that DEX generation takes all our classes + all jars we depend on and translates them to DEX format. Guava is a pretty big jar around 1.1MB

  1. Can it be the cause for the build slowdown?
  2. Are there anything can be done to speed this up?

P.S. Usually I build from Intellij, but I also tried building with Maven - same results.

Thanks

Alex

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

For what it's worth, my gut is that this isn't the cause. It's hard to take a long time doing anything with a mere 1.1MB of bytecode; I've never noticed dex taking any significant time. But let's assume it is the issue for sake of argument.

If it matters enough, you could probably slice up the Guava .jar to remove whole packages you don't use. It is composed of several pieces that aren't necessarily all inter-related.

I don't think this is going to speed things up, but maybe worth mentioning: if you run the build through Proguard (the optimizer now bundled with the SDK), it can remove unused classes before you get to DEX (and, do a bunch of other great optimization on the byte code). But of course that process probably takes longer itself than dex-ing.

link|improve this answer
I've tried to slice the classes I need out, but pretty fast found myself with 40 classes and counting, besides it's ugly :) The thing with ProGuard is that I haven't found a way to embed it in Intellij build. Thanks. – AlexV Sep 25 '11 at 20:00
+1 for mentioning Proguard, and it's worth even if it takes time (at least in this case) – Premraj Sep 28 '11 at 7:02
feedback

Your Answer

 
or
required, but never shown

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