I am unable to build my application I am running the latest build tools downloaded today, this started happening after the update.

-dex:
      [dex] Converting compiled files and external libraries into /Users/rob/Repos/my_app/bin/classes.dex...
       [dx] 
       [dx] UNEXPECTED TOP-LEVEL EXCEPTION:
       [dx] com.android.dx.util.DexException: Multiple dex files define Lcom/robaldred/myapp/About$1;

I have tried cleaning and rebuilding, I've also tried in eclipse but it gives the same error. Anyone got any ideas? I'm at a brick wall here now.

link|improve this question

75% accept rate
feedback

4 Answers

up vote 3 down vote accepted

Something happened yesterday to my system (and another here at work) where the SDK wanted to push the platform tools update but then I was unable to use it at all, etc.

I ended up moving my SDK out of the way and reinstalling it, then everything worked as it always had. I did not have your dex specific issue, but I suspect the update push yesterday broke a good many things. Good luck.

link|improve this answer
Hey, yeh this seems likely. I have reinstalled all the sdk's and tools, it seems to have resolved the issue. Seems like updating to r14 causes issues with existing workspaces. I'd expect more posts, though, maybe its something specific, weird. fresh r14 install is fine. Thanks for your input – Rob Oct 21 '11 at 20:58
feedback

I spent hours cleaning, creating new projects, uninstalling-reinstalling sdk... nothing worked. I didnt have any library project either ( i just had some jar files under lib). Howerver, In the end I fixed it and my steps were:

  • Search and clean all .apk files ( I had some in .svn folder...grr.. some developer had added some build related folders under svn)
  • delete bin and gen.
  • From eclipse project properties remove reference to library jars, press ok. Then again add them back. I had some java compiled jar library. I don't know why I had to remove and add it back, but that surely was needed.
link|improve this answer
feedback

I think the directory in bin change from

com/XXX/XXX

to

classes/com/XXX.

You can clean your project and solve it.

link|improve this answer
1  
cleaning does not resolve this specific issue, as mentioned in the initial question – Rob Oct 28 '11 at 13:51
feedback

You can:

  • Delete folders <.settings>, <bin>, <gen>, and files <.classpath>, <.project> and <project.properties>.

  • Delete your project in Eclipse (right button, <Delete>) without deleting the source files.

  • Create a new Android project and select <Create project from existing sources> from your previous sources.

  • Import external libs, if needed in the build path.

It should solve this annoying problem.

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.