博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
解决:Unable to execute dex: GC overhead limit exceeded
阅读量:6302 次
发布时间:2019-06-22

本文共 1243 字,大约阅读时间需要 4 分钟。

Android打包时下面的错误:
Unable to execute dex: GC overhead limit exceeded GC overhead limit exceeded
解决方案如下:(
更多交流请加入:Android优秀交流群 114559024
1、关闭Eclipse 打开D:\eclipse\eclipse.ini
-startup
plugins/org.eclipse.equinox.launcher_1.3.0.v20120522-1813.jar
--launcher.library
plugins/org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.200.v20120913-144807
-product
org.eclipse.epp.package.jee.product
--launcher.defaultAction
openFile
--launcher.XXMaxPermSize
512M
-showsplash
org.eclipse.platform
--launcher.XXMaxPermSize
512m
--launcher.defaultAction
openFile
-vmargs
-Dosgi.requiredJavaVersion=1.5
-Dhelp.lucene.tokenizer=standard
-Xms40m
-Xmx512m
2、之后进行修改:修改如下
-vm
C:\Program Files\Java\jdk1.7.0_21\bin\javaw.exe
-startup
plugins/org.eclipse.equinox.launcher_1.3.0.v20120522-1813.jar
--launcher.library
plugins/org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.200.v20120913-144807
-product
org.eclipse.epp.package.jee.product
--launcher.defaultAction
openFile
--launcher.XXMaxPermSize
512M
-showsplash
org.eclipse.platform
--launcher.XXMaxPermSize
512m
--launcher.defaultAction
openFile
-vmargs
-Dosgi.requiredJavaVersion=1.5
-Dhelp.lucene.tokenizer=standard
-Xms256m
-Xmx1024m
3、保存,打开Eclipse 

转载于:https://www.cnblogs.com/zhangqingquan/p/4468402.html

你可能感兴趣的文章
C++ primer->16.2 模板实参推断
查看>>
Java核心技术卷1——第四章下
查看>>
虚拟机字节码执行引擎
查看>>
高斯消元法
查看>>
linux就该这么学第十一课-网络配置4种方法,网卡聚合
查看>>
PHP 数组
查看>>
软件架构师工作内容总结
查看>>
机智的MySQL优化器 --- is null
查看>>
python bool值要注意的一些地方
查看>>
vuex使用mapActions报错解决办法
查看>>
阿里云服务器配置小程序用ssl证书
查看>>
移动应用开发—— 如何搭建开发大型的应用架构?
查看>>
[LintCode] Frog Jump
查看>>
三、spring成长之路——springIOC容器详解(上)
查看>>
[精]Oracle APEX 5.0 入门教程(一) Form表单
查看>>
CSS盒子模型
查看>>
LINQ
查看>>
如何用photoshop把一张图片分割成几张图片呢?
查看>>
HTML结构
查看>>
C++基本要点复习--------coursera程序设计实习(PKU)的lecture notes
查看>>