Since updating to ADT 14 I can no longer build my project. It was building fine prior to updating.

The error: [2011-10-23 16:23:29 - Dex Loader] Unable to execute dex: Multiple dex files define Lcom/myapp/R$array; [2011-10-23 16:23:29 - myProj] Conversion to Dalvik format failed: Unable to execute dex: Multiple dex files define Lcom/myapp/R$array;

Similar issues have been reported and I have tried the suggestions there including

  • Restarting Eclipse
  • Cleaning the project and rebuild - Disable "Project->Build Automatically" option, then "Clean" and "Build" project, then try to run. reset "Build Automatically" option to On
  • Reinstalling the Android Developer Tools
  • Reinstalling Eclipse (updated to the latest version 3.7.1)
  • Created a new project importing from the file system
  • Created a new project from subversion.
link|improve this question
feedback

12 Answers

up vote 6 down vote accepted

My problem was resolved after cleaning up some directories and files left over from the previous versions of the tools. ADT Rev 14 changes where binaries are stored. I deleted the entire bin directory, restarted Eclipse and cleaned the build and forced a rebuild. That seemed to do the trick initially but the problem came back after the next run.

I finally discovered that my bin directory was included in the project build path. I excluded bin from the build path and repeated the steps above. This resolved my problem.

link|improve this answer
4  
What the heck Google. This problem keeps coming back even with R15. – terry Oct 29 '11 at 2:33
I edited the solution above to include the final resolution. Resolved permanently now. – terry Nov 8 '11 at 16:04
2  
In short, no one really knows why the problem happens, what it means and how to fix it (I don't have any bin directory in the Java Build Path). I avoided updating to R15 for these reasons, staying with R9. But I am still having a similar problem, with no clue in sight. Any tip or help would be greatly appreciated. – Bill The Ape Jan 4 at 17:28
1  
@BillTheApe - agreed. This is beyond frustrating, it's costly. – TRedman Jan 4 at 20:23
@TRedman I finally managed to solve the problem. Without understanding why. Don't laugh. LOL +1. – Bill The Ape Jan 5 at 22:45
feedback

Restart your eclispe then it will definitely work.

link|improve this answer
feedback

You have probably installed r14, this error may have been caused due to the platform tools update, you have to re-install your sdk

link|improve this answer
I just completely blew away my SDK and installed it fresh from the downloaded zip file and then loaded the Android APIs with the Android SDK Manager. I had high hopes but the problem persists. – terry Oct 24 '11 at 6:08
There is a .android hidden folder in windows, you should delete that too. – Reno Oct 24 '11 at 6:16
feedback

Try deleting R.java and letting eclipse re-generate it.

link|improve this answer
Thanks Blaskovicz, but no luck. – terry Oct 24 '11 at 6:12
its not a proper solution – dinesh sharma Mar 12 at 17:47
feedback

For me this problem only exists as long as there are Android library projects involved in my project. So when I remove all the libraries and do as you said I can run my app again. If there are libraries involved even the bin-removal-trick trick won' work.

I don't get why this bug first appeared today since I'm using ADT 14 for several days now. Well there were other bugs that kept me happy though.

link|improve this answer
feedback

The ADT R14 update changes where the classes go to the bin/classes directory (see http://tools.android.com/recent/buildchangesinrevision14). If you are using ANT, you should change the path for your classes from bin to bin/classes. This worked for me.

link|improve this answer
I am using Eclipse. Do you know where you change the class path in Eclipse? – terry Oct 29 '11 at 2:40
feedback

I ran into this when I upgraded from adt 14 to 15 and to get it to work I ended up just deleting the .eclipse folder (along with my settings) and re-installing the adt 15.

link|improve this answer
feedback

After trying all the other suggestions with no luck, I deleted all the contents of my projects 'bin' directory, then ran eclipse again and it worked.

link|improve this answer
feedback

After reading Terrys response about deleting the bin directory and Larrys about the the location of the ANT directory:

I moved the files located in my projects BIN directory to the BIN/CLASSES and im up and running.

Edit 1 Then failed on second run...doh

Edit 2 So closed Eclipse moved files back to original location and its all working... um what? I don't pretend to know why this worked. Will update if any changes.

Edit 3 I have noted from my backups that there were indeed duplicate files in the BIN directory and BIN/CLASSES.

So the answer is: don't have files in both locations. At least for me that's what worked.

link|improve this answer
Try to reduce answers to: Helpful conclusion followed by supporting facts. Avoid history narrative AMAP; People tend to flag that, thinking it's "not an answer". – Brock Adams Dec 4 '11 at 20:46
cheers for that, any help to making my ramblings clearer is appreciated – HostMyBus Dec 4 '11 at 23:29
feedback

Solution for me:

  1. BACK UP YOUR CODE!
  2. Navigate to your project workspace (not your project) and run the following commands:

    dev1:workspace$ cd ~/Documents/workspace/.metadata/.plugins/ dev1:workspace$ rm -rf org.eclipse.core.resources

  3. Navigate to your Eclipse directory and type this command:

    dev1:eclipse$ ./eclipse clear

  4. Eclipse will start with an empty workspace - don't worry your projects are still there. Simple create new project from existing resource and things should be gravy.

The exact error I was receiving: [2012-02-07 14:15:53 - Dex Loader] Unable to execute dex: Multiple dex files define Landroid/support/v4/view/PagerAdapter; [2012-02-07 14:15:53 - ProjectCloud] Conversion to Dalvik format failed: Unable to execute dex: Multiple dex files define Landroid/support/v4/view/PagerAdapter;

link|improve this answer
feedback
  1. Close ecplise
  2. Delete bin folder inside your project folder.
  3. Restart eclipse and clean your project
  4. now try to run and wow the problemo solved
link|improve this answer
does not help.. – Vicky Kapadia May 5 at 7:34
feedback

Deleting the bin folder was not enough, I also deleted the gen folder. Then after two rebuilds the dex error message was gone.

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.