无法执行dex

时间:2013-04-12 23:27:12

标签: java android eclipse

我将.jar文件添加到我的android项目后出现了以下问题:

“转换为Dalvik格式失败:无法执行dex:Java堆空间”

我将eclipse.ini文件更改为以下内容。如同这篇文章:

Unable to execute dex: GC overhead limit exceeded in Eclipse

我收到以下错误:

- 无法执行dex:无法将新索引65662合并为非巨型指令!

- 转换为Dalvik格式失败:无法执行dex:无法将新索引65662合并为非巨型指令

请有人帮我解决这个问题或遇到类似问题吗?

任何帮助表示赞赏。

由于

这是我现在的eclipse.ini文件:

-startup
plugins/org.eclipse.equinox.launcher_1.1.1.R36x_v20101122_1400.jar
--launcher.library
plugins/org.eclipse.equinox.launcher.win32.win32.x86_1.1.2.R36x_v20101222
-showsplash
org.eclipse.platform
--launcher.XXMaxPermSize
512m
--launcher.defaultAction
openFile
-product
org.eclipse.epp.package.java.product
--launcher.defaultAction
openFile
--launcher.XXMaxPermSize
512M
-vmargs
-Dosgi.requiredJavaVersion=1.5
-Xms512m
-Xmx512m

1 个答案:

答案 0 :(得分:2)

在我的project.properties中添加了dex.force.jumbo=true,这就是诀窍。 (确保你有ADTv21 +,你还需要清理一次项目。)