引用 jar 或使用 Dalvik 编译它?
我有一个 jar 需要从我的 Android 项目中引用。我还有 jar 的 src,因此我可以将其包含在项目本身中。我想知道引用 jar 与使用 Dalvik 将其编译到项目中是否会对生成的最终 Dalvik 包大小产生任何影响。
I have a jar that I need to reference from my Android project. I also have the src of the jar, so I could include it in the project itself. I was wondering if referencing a jar vs. compiling it in with the project using Dalvik makes any difference in terms of final Dalvik package size that gets generated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您使用 ant 构建项目,只需将 .jar 文件包含在您的
libs/
目录中。构建脚本会自动将其包含在您的 APK 中。If you're using ant to build your project, just include the .jar file in your
libs/
directory. The build script will automatically include it in your APK.包含源文件或引用 .jar 文件在大小上没有太大区别。两者最终都会转换为 Dalvic 可执行文件 (.dex)。
Including source file or referring .jar file doesn't make much difference in size. Both are ultimately converted to Dalvic Executables(.dex).