Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I know this question has been asked here a few times before. But i haven't seen any possible solution yet. Before i make the project 'Run as Android Application' , if i do not clean it, i receive the following error and have to restart Eclipse ... and clean again.

Conversion to Dalvik format failed: Unable to execute dex: Multiple dex files define Lcom/jstun/core/attribute/MessageAttributeInterface;

com.jstun.core... is a part of my src folder, of course i can't remove it. And even if i remove that package, another package will show up as an error like:

Unable to execute dex: Multiple dex files define Landroid/support/v4/app/ActivityCompatHoneycomb;

I've seen this error since updating to ADT 15, i'm using Eclipse Galileo on Ubuntu Do you have any idea? Thanks for any reply!

share|improve this question

12 Answers

up vote 17 down vote accepted

This is a build path issue. Make sure your bin folder is not included in your build path. Right click on your project, go to properties and then Build Path. Make sure that Honeycomb library is in your libs/ folder and not in your source folder. Include the libraries in libs/ individually in the build path. BTW, you may want to bring in the android-support-v4 library to get Ice Cream Sandwich support instead of the Honeycomb support library.

share|improve this answer
Solved my problems, thanks! – Sean Feb 12 at 4:00

I have encountered a similar error today and the reason was that the support library was referenced by two library projects used by my app project but with different versions.

In more details: My app depends on 2 library projects

  • FaceBookSDK 3.0 -> which is referencing android-support-v4
  • ActionBarSherlock -> which is referencing android-support-v4 but with a modified version to support maps.

To solve the problem I had to make FaceBookSDK library depend on ABS library instead of the support library directly.

share|improve this answer
Yes, my issue was similar. Two libraries had the httpmime library, so I removed one and made it point to the other project. – Matt Nov 26 '12 at 14:53
3  
can any of you gays explain exactly how you did it ? – samih Dec 12 '12 at 18:00
@samih in the example I mentioned, first I removed android-support-v4 jar from FaceBookSDK project lib folder and build path. Then I added reference to the ActionBarSherlock library project. – M.Sameer Dec 13 '12 at 0:37
Basically you need to check whether things are duplicated in your references.... – Naren Jan 10 at 0:37
for me turns out another developer added a new version of a library jar file without deleting the old one. So there were two jars with same classes. Thus the error 'Multiple dex files...' You could do a grep -r 'OffendingClassName' | grep jar$ to search for jar files that contain the class name. – bibstha Jan 20 at 18:11

I have also faced this problem in my project. AVD is not able to reload assets,lib,res and etc folder contexts. problem : Dex Loader] Unable to execute dex: Multiple dex files define Landroid/support/v4/accessibilityservice/AccessibilityServiceInfoCompat$AccessibilityServiceInfoVersionImpl.

Then,I created new projects and copied MainActivity.java,activity_main.xml, drawable context. Then delete old project from package explore,restart your Eclipse and AVD. My project is now working properly.... :) I hope this steps will help u little bit folks..!!

share|improve this answer

Well for me, I deleted the file in the libs folder called android support v4.jar and it all worked out. Goodluck :)

share|improve this answer

If some of you facing this problem with facebook-connent-plugin for phonegap

try to remove files in bin/class/com/facebook/android directory ! -> and rebuild

share|improve this answer

I'm leaving this answer for someone who gets in this scenario as I did.

I stumbled here and there before noticing that I mistakenly dragged and dropped the Support Library JAR file into my src folder and it was lying there. Since I had no idea how it happened or when I dropped it there, I could never imagine something was wrong there.

I was getting the same error, I found the problem after sometime and removed it. Project is now working fine.

share|improve this answer

I have same issue, what i tried is:

  1. List item
  2. Open Project Build Path,
  3. Select "Libraries" tab,
  4. Remove all library except the Android Library
  5. Adding all required JARs Files,
  6. And Done!

It works for me, thanks.

share|improve this answer

This error happened to me when in my app's project I referenced a Library project in my Eclipse workspace (in my case the Facebook SDK) and at the same time included the Facebook SDK as a jar in the libs folder. Removing the library reference but keeping the jar in the libs folder removed the error.

share|improve this answer

The Solution for me was just to do following things:

  1. ->lib directory in your project and delete any multiple elements.
  2. Project->Properties->Java build Path and delete any Dependency Library was added automatically and not by you! ->Apply
  3. Restart Eclipse IDE
  4. Now Clean the project.
  5. Run/Debug on Device/Emulator the project ... Good Luck
share|improve this answer

I got this error for another reason. I was mistaking adding both the v4 AND the v13 support library. This was not necessary for me since my minSdkVersion is 15.

I fixed it by only including the v13 support library. Also, make sure to check mark the library in your exported library build path. I also moved it to the top.

share|improve this answer

As others mentioned, this occurs when you have multiple copies of the same class in your build path, or elsewhere in your setup.

I had added android-support-v4.jar to my libs/ folder, and somehow eclipse added a second copy to bin/classes/android-support-v4.jar.

You can test for this with

grep -r YourOffendingClassName YourApp | grep jar

Deleting the extra copy in bin/classes solved the problem - unsure why Eclipse made a copy there.

share|improve this answer

Modify the maximun memory parameter in eclipse.ini

-Xmx1024m

And restart your computer.

It worked for me :)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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