Proguard 显着增加 Android 中的 APK 大小
我使用 Eclipse 中的默认设置导出我的应用程序并让 Proguard 对其进行模糊处理。
我遇到的问题是导出的 APK 明显大于我在进行调试构建时获得的 APK(约 7MB,而不是约 2MB)。
如果我查看 APK,我会得到以下信息:
(non-proguard)
/assets (1.2 MB)
/META-INF (42.3 KB)
/res (765.9 KB)
AndroidManifest.xml (6.6 KB)
classes.dex (416.1 KB)
resources.arsc (49.5 KB)
(proguard)
/assets (1.2 MB)
/hooks (13.7 KB)
/info (240 bytes)
/logs (101.1 KB)
/META-INF (496.6 KB)
/objects (4.3 MB) <-- main size difference
/refs (155 bytes)
/res (777.4 KB)
AndroidManifest.xml (6.6 KB)
classes.dex (101.5 KB)
resources.arsc (50.3 KB)
关于我做错了什么的任何想法(应该是 变小!!!)?
I'm using the default settings in Eclipse to export my application and have Proguard obfuscate it.
The problem I'm having is that the exported APK is significantly larger than the APK I get when doing debug builds (~7MB instead of ~2MB).
If I look into the APKs I get the following:
(non-proguard)
/assets (1.2 MB)
/META-INF (42.3 KB)
/res (765.9 KB)
AndroidManifest.xml (6.6 KB)
classes.dex (416.1 KB)
resources.arsc (49.5 KB)
(proguard)
/assets (1.2 MB)
/hooks (13.7 KB)
/info (240 bytes)
/logs (101.1 KB)
/META-INF (496.6 KB)
/objects (4.3 MB) <-- main size difference
/refs (155 bytes)
/res (777.4 KB)
AndroidManifest.xml (6.6 KB)
classes.dex (101.5 KB)
resources.arsc (50.3 KB)
Any ideas on what I'm doing wrong (it should be getting smaller!!!)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
classes.dex 明显更小,因此看起来 Proguard 正在工作。
hooks、info、logs、objects、refs 是 Git 目录 - 看起来您错误地将它们包含在构建中。
classes.dex is significantly smaller so it looks like Proguard is working.
hooks, info, logs, objects, refs are Git directories – looks like you've mistakenly included them in your build.