您的位置:首页 > 编程语言 > Java开发

【Android , Eclipse】Conversion to Dalvik format failed: Unable to execute dex

2012-02-01 13:45 453 查看
最近在Android ICS,编译工程的过程中出现Unable to execute dex: Java heap space 的错误,最后导致Eclipse卡,直到需关闭:

修改步骤:

【1】eclipse.int 修改内存,修改eclipse.ini文件[在Eclipse的安装根目录下] : -Xms256m -Xmx512m

【2】额外导入工程的jar包需要通过 add User Library方式导入

右键工程->build path->add Library->user Library->user Libraries->new->"User Libraries Name"->add JARs

若这个时候出现其他的错误:

【1】请检查Android SDK中的tools与Platform-tools是否为最新的版本,并进行更新

【2】检查SDK版本是否为对应的版本,有没有最近的更新

下面是一段英文引用:

As Android developer, I have met a strange problem when I want use a third party jar, it remained me that:
Dex Loader] Unable to execute dex: null
Conversion to Dalvik format failed: Unable to execute dex: null
out of memory error…An internal error occurred during: “Build Project”.
Java heap space

This is the DEX Error,I find the solutions by Google, one way is to modify the eclipse.ini, you can increase the memory allocated in eclipse.ini to this: -Xms128m -Xmx512m or something higher, but this didn’t work for me. After modify the eclipse.ini, I cannot start the eclipse. By StackOverflow, I find a solution:

eclipse.ini file must have -vm on first line and path on second line. don’t try to put everything into one line!
-vm
C:\Program Files\Java\jdk1.6.0_07\bin\javaw.exe

After add the -vm and the path in my eclipse.ini, I can start my Eclipse and the problem has been resolved.

Another way to solve the ” Conversion to Dalvik format failed: Unable to execute dex: null” problem is using the user library, the concrete steps are as follows:
1. Right-click the project in Eclipse and select “Build Path -> Add Libraries…”.
2. Select User Library from the list and click Next.
3. Click the “User Libraries…” button.
4. Click “New…” in the User Libraries dialog.
5. Give the user library a name and select the System library checkbox and click OK.
6. Highlight the newly added user library in the list and click the “Add JARs…” button and add the desired jar files.
7. Click OK on the User Libraries dialog.
8. Make sure the new user library is checked in the Add Library dialog and …

Posted by CuteAndroid
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐