导入谷歌播放库后Eclipse挂起

时间:2013-12-14 09:50:02

标签: eclipse google-maps hang

我已在我的某个应用中导入google play service library,现在当我尝试仅运行此应用时,我的eclipse会挂起并停止运行。 在发布之前没有错误消息,我只是尝试了几次但没有成功。

Eclipse向我展示了这条消息:

Unable to execute dex: Java heap space
Conversion to Dalvik format failed: Unable to execute dex: Java heap space

在各个帖子中显示的 eclipse.ini 中增加内存后,我收到了这个新错误:

Unable to execute dex: GC overhead limit exceeded
GC overhead limit exceeded

这是我的eclipse.ini:

-startup
plugins/org.eclipse.equinox.launcher_1.3.0.v20120522-1813.jar
--launcher.library
plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.v20120913-144807
-showsplash
org.eclipse.platform
--launcher.XXMaxPermSize
256m
--launcher.defaultAction
openFile
-vmargs
-Xms1024m
-Xmx1024m
-XX:-UseCompressedOops
-Dorg.eclipse.swt.browser.DefaultType=mozilla

有人能帮助我吗? 我不知道如何解决这个问题...

1 个答案:

答案 0 :(得分:5)

您必须从-XmsAm文件手动编辑-XmxBmeclipse.ini参数以增加内存。试试吧。

https://stackoverflow.com/a/6024262/2896954