Eclipse导入layoutlib.jar编译出现DEX error的解决方案

    在做第一个Android APK的时候需要连接layoutlib.jar。结果出现了一个错误:
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 也就是DEX Error 错误。

    第一次碰见,真的是头都大了。后来baidu+Google.果然不负有心人。 应该采用用户库的形式导入该库,具体步骤如下:

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

转自http://blog.csdn.net/dadahacker/article/details/5587365

0 条评论
发表一条评论

注意: 评论者允许使用'@user空格'的方式将自己的评论通知另外评论者。例如, ABC是本文的评论者之一,则使用'@ABC '(不包括单引号)将会自动将您的评论发送给ABC。使用'@all ',将会将评论发送给之前所有其它评论者。请务必注意user必须和评论者名相匹配(大小写一致)。