在Eclipse中的Android应用程序中,我得到了以下错误。

意想不到的顶级异常: java.lang.IllegalArgumentException:已添加:Lorg/xmlpull/v1/XmlPullParser; .... 转换到Dalvik格式失败,错误1

此错误仅在向项目添加特定的外部JAR文件时出现。我花了很长时间寻找可能的解决方案,但没有一个可行。

我甚至尝试将Android 1.6而不是1.5(我目前使用的版本)。


当前回答

我刚刚用最新的API和最新的sdk和工具安装了最新的eclipse,但是,几年过去了,这个错误并没有消失。我浪费了一天时间才想出来。尝试一切。徒劳无功。因为这个信息是非常通用的,很多不同的问题都会引发它。因此,一些人提出的解决方案并不适用于另一些人。

一个好的方法是去Window > Preferences > Android > Build and UNCHECK“Skip packaging and dexing…”这样,在构建时就可以获得更多关于特定错误的线索,而不仅仅是导出。

在我的情况下,我得到了一个“Dx不支持的类文件版本…”。这个错误我在这里没有看到报告。基于此,我发现我使用的一些旧jar是用1.6编译的,而另一些是用1.7编译的。因此,我将默认的IDE编译器遵从级别更改为1.6 (Window > Preferences > Java > compiler),在完全清理和重建我拥有的每个依赖后,我终于可以生成我的APK。

其他回答

我遇到了这个问题,但我的解决办法是双重的。 1)。我不得不在项目->属性-> Android下添加一个Android目标版本。 2)。我没有所有的“第三方插件”。点击AVD SDK管理器下的可用软件包->第三方附加组件->谷歌公司。我下载了所有的sdk,这解决了我的问题。

上面列出的解决方案没有一个对我有效。

这就是我遇到的问题:

I added the jSoup external JAR file 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 Dalvik conversion error. It said I had "already included" a class from that JAR file. 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!

更新Proguard到最新版本为我解决了这个问题。

我的proguard路径是C:\Program Files (x86)\Android\ android-sdk\tools\proguard\ 我从这里下载了新版本 并替换了bin和lib文件夹

感谢上帝!

依赖项上的谷歌API会导致此问题。拆卸后工作良好。

通常对我来说,清理项目并不能解决这个问题。

但是在Eclipse中关闭项目,然后重新打开它似乎可以修复这些情况……