本文主要是介绍android运行时出现 Unable to execute dex: GC overhead limit exceeded 的错误。,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
出错原因:运行中占用的堆内存超过了jvm设置的限制。
解决方案:
修改eclipse文件夹下的eclipse.ini文件的配置参数如下:
openFile
--launcher.XXMaxPermSize
512M
-showsplash
org.eclipse.platform
--launcher.XXMaxPermSize
512m
--launcher.defaultAction
openFile
-vmargs
-Dosgi.requiredJavaVersion=1.5
-Xms512m
-Xmx1024m
想更具体了解各参数的含义可参照一下博客:http://blog.csdn.net/fuxiaohui/article/details/5871803http://www.cnblogs.com/yaozhongxiao/p/3521428.html
这篇关于android运行时出现 Unable to execute dex: GC overhead limit exceeded 的错误。的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!