In my Android application in Eclipse I get the following error.

UNEXPECTED TOP-LEVEL EXCEPTION:
java.lang.IllegalArgumentException: already added: Lorg/xmlpull/v1/XmlPullParser;
....
Conversion to Dalvik format failed with error 1

This error only appears when I add a specific external JAR file to my project. I searched for a long time for the possible solution, but none of the possible solutions work. I even tried to change to Android 1.6 instead of 1.5 (the current version I use).

link|improve this question
1  
I tried this and it gave same error. I finally fixed it by adding the library in Properties->JavaBuildPath->Projects and add the library there. Its called "Required objects on the build path:". – aaaaaaa Apr 6 at 19:28
feedback

38 Answers

1 2

Go to Project » Properties » Java Build Path » Libraries and remove all except the "Android X.Y" (in my case Android 1.5). click OK. Go to Project » Clean » Clean projects selected below » select your project and click OK. That should work.

It is also possible that you have a JAR file located somewhere in your project folders (I had copied the Admob JAR file into my src folder) and THEN added it as a Java Path Library. It does not show up under the Package Explorer, so you don't notice it, but it does get counted twice, causing the dreaded Dalvik error 1.

link|improve this answer
2  
I had the same issue and the above steps by user408841 worked for me. – Arunabh Das Aug 14 '10 at 11:29
2  
Worked like a charm. Thank you... – sprite Nov 14 '10 at 22:08
13  
Hi. It fixes for me just by going "Project » Clean » Clean projects selected below » select your project and click OK." ignoring the 1st bit – Kurru Jan 6 '11 at 20:55
1  
Worked for me. I had to restart Eclipse Helios 2ce afterwards. Whenever a project is cleaned it seems that 2 Eclipse restarts are necessary to get it back in shape. Just let Eclipse load the workspace before restarting. – Alex Apr 13 '11 at 4:14
7  
I am quite confusing with this solution. If you remove all jar files and libraries, how are you going to compile the project successfully? – Yan Cheng CHEOK Feb 2 at 2:57
show 15 more comments
feedback
up vote 80 down vote accepted

I solved the problem.

It seems that I have two JAR files on my buildpath that include the same package and classes.

smack.jar and android_maps_lib-1.0.2

Deleting this package from one of the JAR files solved the problem.

link|improve this answer
5  
+1 - In summary, this is a JAR file conflict. Specifically, this could be a conflict in any two JAR files. In my case, the conflict was between jackson-all-1.7.4.jar, jackson-core-asl-1.5.4.jar, and jackson-mapper-asl-1.5.4.jar. I removed the two 1.5.4 JAR's and left the 1.7.4 all. – jmort253 Jun 12 '11 at 22:53
show 3 more comments
feedback

Windows 7 Solution:

Confirmed the problem is caused by ProGuard command line in the file
[Android SDK Installation Directory]\tools\proguard\bin\proguard.bat

Edit the following line will solve the problem:

call %java_exe% -jar "%PROGUARD_HOME%"\lib\proguard.jar %*

to

call %java_exe% -jar "%PROGUARD_HOME%"\lib\proguard.jar %1 %2 %3 %4 %5 %6 %7 %8 %9
link|improve this answer
5  
Running Win7 and I can confirm this worked for me. – Pete Aug 31 '11 at 4:07
show 16 more comments
feedback

If you have ADT revision 12+, you should update your proguard from 4.4 -> 4.6 (as described here). Also, you should leave ...\bin\proguard.bat file in the orginal form.

Just download it from the web, and copy lib folder from downloaded package to the :

[Android SDK Installation Directory]\tools\proguard\lib

link|improve this answer
2  
This has been my issue across multiple ADTs. Downloading and replacing the proguard JARs works. – Mr. S Nov 6 '11 at 20:00
show 2 more comments
feedback

Here's another scenario, and solution:

If you run into this problem recently after updating the ADT for Eclipse:

  1. In your app project, check for any linked source folders pointing to your library projects (they have names in the form "LibraryName_src").
  2. Select all those projects, right-click, choose "Build Path"->"Remove from Build Path".
  3. Choose "Also unlink the folder from the project", and click "Yes".
  4. Clean, rebuild and redeploy the project.

It seems the reason is that some previous version of ADT linked Library project source folders to the "child" projects, and the current ADT/Dex combination isn't compatible with that solution anymore.

EDIT: this is confirmed by an Android Dev Blog entry, specifically this one - see the 8th paragraph onwards.

link|improve this answer
show 2 more comments
feedback

This can also be caused if you have added Android.jar to your build path, perhaps by an accidental quick fix in eclipse. Remove it with right click project->build path->configure build path->android.jar remove

link|improve this answer
show 1 more comment
feedback

Just for the other people who still have this problem and they have tried the above answers but still getting the error (which was my case), then my solution was to delete the project from Eclipse and re-import it again.

This made the Android library to be added again to my referenced libraries, so now I have two Android JAR files referenced, hence I deleted one of them and now it compiles fine.

Solution: Delete the project from Eclipse IDE and then re-import it again, then check for the above solutions.

link|improve this answer
feedback

for me an extra jar reference had appeared in my build path, deleted this and it works now

link|improve this answer
feedback

My problem was caused by ADT version 12.0 and ProGuard integration. This bug is well documented and the solution is in the documentation

Solution is in here

ProGuard command line

link|improve this answer
show 2 more comments
feedback

I had the same problem and none of these solutions worked. Finally, I saw in the console that the error was due to duplicated class (one in the existing project, one in the added jar file) :

java.lang.IllegalArgumentException: already added: package/MyClassclass;
[2011-01-19 14:54:05 - ...]: Dx1 error; aborting
[2011-01-19 14:54:05 - ...] Conversion to Dalvik format failed with error 1

So check if you are adding jar with duplicated classes in your project. If yes, try removing one of them.

It worked for me.

link|improve this answer
show 1 more comment
feedback

Simply cleaning the project has worked for me every time this error has come up.

link|improve this answer
feedback

All the solutions above didn't work for me. I'm not using any precompiled .jar. I'm using the LVL and the Dalvik errors where all related to the market licensing library.

The problem got solved by deleting the main project and reimporting (create a new project from existing sources).

link|improve this answer
feedback

Ran into this problem myself today. Cleaning and rebuild did not fix the problem. Deleting and reimporting the project didn't help either.

I finally traced it back to a bad additions to my .class file. I think this was added by the plugin tools when I was trying to fix another problem, removing it got rid of the "Conversion to Dalvik format failed with error 1" build error:

<classpathentry kind="lib" path="C:/dev/repository/android-sdk-windows/platforms/android-3/android.jar">
    <attributes>
        <attribute name="javadoc_location" value="file:/C:/dev/repository/android-sdk-windows/docs/reference"/>
    </attributes>
    <accessrules>
        <accessrule kind="nonaccessible" pattern="com/android/internal/**"/>
    </accessrules>

link|improve this answer
feedback

None of previously proposed solutions worked for me. In my case the problem happened when I switched from referencing a library source code folder to using the library jar. Initially there was an Android library project listed under the Android application project Properties\ Android page\ Library section, and the library compared also in project explorer tree as a link to the library source directory.

In the first place I just deleted the directory link from the project tree and I added the jar library to the build path, but this caused the exception.

Correct procedure was (after changing back the build path and putting back the reference to the library source):

  • properly remove the library source directory link by actually removing the reference from application project Properties\ Android page

  • adding the library jar to the application project build path as usual.

link|improve this answer
feedback

In my case im having an exteranl jar added.So I moved the external jar position to top of android reference in Project Prop--->Java buildPath--->Project references

link|improve this answer
feedback

None of the above solutions worked for me.

Here's where I was having a problem:

I added the jSoup external jar to my project's path by first putting it in a source folder called "libs", and then right clicking on it, Build Path-> add to build path. This threw the davlik conversion error. It said I had "already included" a class from that jar. I looked around the project's directory and found that the place where it was "already included" was in fact the bin directory. I deleted the jar file from the bin directory and refreshed the project in eclipse and the error went away!

link|improve this answer
feedback

Updating Proguard to latest version solved it for me.

THANK GOD!

link|improve this answer
feedback

I ran into this problem but my solution was twofold. 1.) I had to add an android target version under project->properties->android. 2.) I didn't have all google 'third party add-ons' click in AVD SDK manager under available packages->third party add-ons->Google Inc I donwloaded all of the sdk's and that solved my issue.

link|improve this answer
show 1 more comment
feedback

None of the answers here helped in my case.

For me the problem was that mvn eclipse:eclipse was generating a classpath entry that was a project reference to an Android library project, however, it was not showing up in the Eclipse build path settings! This meant that the library classes ended up in the dexer twice, once from the hidden project reference, and once from the linked library JAR.

I had to open the .classpath with a text editor and remove the projects element manually. This fixed the issue.

link|improve this answer
feedback

In my case the issue was originated after updating Eclipse and ADT in March 2011. In my project I am using a JAR which was producing issues to rebuild and none of the former solutions worked. It took me some days to try all , search up&down with no satisfying solution. Apparently there was a double reference to the .jar file.

Finally I :

  1. removed any references from the libraries,
  2. deleted the physical file form within the application.
  3. got the .jar (located in a different directory outside of the project) using "Add External Jars"
  4. performed a project "clean",
  5. update references into the module calling the jar with (ctrl)+(shift)+O

and it did finally compile.

link|improve this answer
feedback

Often for me cleaning the project DOES NOT fix this problem.

But closing the project in eclipse then re-opening it does seem to fix it in those cases...

link|improve this answer
feedback

I know its answered already, but here was my solution:

My android project was from a svn repo, and I just did Checkout as a New Project. I had to manually add my libraries (android and java) to the build path, otherwise it wouldn't let me compile. Then I would get the above error.

I had to make a new Android project, and then manually copy over the changes.

link|improve this answer
feedback

My problem was in integration of Ant + ProGuard + AdMob SDK library + Debug mode. I was building debug APK using Ant and Added AdMob SDK jar to libs/ directory. Eclipse generated debug APK normally but Ant could not. I was getting the following error:

[apply] UNEXPECTED TOP-LEVEL EXCEPTION:
[apply] java.lang.IllegalArgumentException: already added: Lcom/google/ads/AdActivity;
[apply]     at com.android.dx.dex.file.ClassDefsSection.add(ClassDefsSection.java:123)

I also had ProGuard turned on for debug build in my build.xml (default is off):

<target name="-debug-obfuscation-check">
  <property name="proguard.enabled" value="true"/>
</target>

That was the problem. Somehow ProGuard and AdMob SDK do not live together in debug mode. ProGuard did not obfuscate AdActivity class so it appeared in bin/proguard/obfuscated.jar unobfuscated, but the same class exists in AdMob SDK jar. Eclipse was building debug APK without ProGuard so it worked fine.

So my solution was just to turn off ProGuard for debug builds in build.xml. Hope it helps somebody.

link|improve this answer
feedback

I am using Android 1.6 and had one external jar. What worked for me was to remove all libraries, right-click project and select Android Tools->Fix Project Properties (which added back Android 1.6) and then add back the external jar.

link|improve this answer
feedback

I had the same problem, when I tried to export my project. Nothing to see in the console.

For me the solution was upgrading proguard to the lastest version, hopes this helpes someone.

link|improve this answer
feedback

I ran into this problem because the android-maven-plugin in Eclipse was apparently not recognizing transitive references and references referenced twice from a couple of projects (including an Android library project), and including them more than once. I had to use hocus-pocus to get everything included only once, even though Maven is supposed to take care of all this.

For example, I had a core library globalmentor-core, that was also used by globalmentor-google and globalmentor-android (the latter of which is an Android library). In the globalmentor-android pom.xml I had to mark the dependency as "provided" as well as excluded from other libraries in which it was transitively included:

    <dependency>
        <groupId>com.globalmentor</groupId>
        <artifactId>globalmentor-core</artifactId>
        <version>1.0-SNAPSHOT</version>
        <!-- android-maven-plugin can't seem to automatically keep this from being 
            included twice; it must therefore be included manually (either explicitly 
            or transitively) in dependent projects -->
        <scope>provided</scope>
    </dependency>

Then in the final application pom.xml I had to use the right trickery to allow only one inclusion path---as well as not explicitly including the core library:

    <!-- android-maven-plugin can't seem to automatically keep this from being 
        included twice -->
    <!-- <dependency> -->
    <!-- <groupId>com.globalmentor</groupId> -->
    <!-- <artifactId>globalmentor-core</artifactId> -->
    <!-- <version>1.0-SNAPSHOT</version> -->
    <!-- </dependency> -->

    <dependency>
        <groupId>com.globalmentor</groupId>
        <artifactId>globalmentor-google</artifactId>
        <version>1.0-SNAPSHOT</version>
        <exclusions>
            <!-- android-maven-plugin can't seem to automatically keep this from 
                being included twice -->
            <exclusion>
                <groupId>com.globalmentor</groupId>
                <artifactId>globalmentor-core</artifactId>
            </exclusion>
        </exclusions>
    </dependency>

    <dependency>
        <groupId>com.globalmentor</groupId>
        <artifactId>globalmentor-android</artifactId>
        <version>1.0-SNAPSHOT</version>
    </dependency>
link|improve this answer
feedback

I had the exact same error with a project containing protobuf lite (protocol buffers by Google) in it's classpath. I guess the reason was the protobuf-lite.jar that was in my classpath and project-folder was built in my previous machine. When I downloaded maven and re-built the protobuf-lite.jar file then added it anew as a user-library to my project everything worked fine.

link|improve this answer
feedback

What worked for me are the following: - Clean the build completely - Removed the extraneous android.jar that I found in Project/Properties/Libraries

link|improve this answer
feedback

I went through the steps in this answer and still did not get a resolution. I kept searching around online and found that you can get this error if you're trying to export an APK while an Android device is connected to the computer.

Disconnecting my device followed by closing the project, rebooting the computer, opening the project and cleaning it worked for me all three times this has happened.

link|improve this answer
feedback
1 2

protected by Bill the Lizard Apr 16 '11 at 12:23

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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