如何在命令行中将android库(xx.jar)添加到apk中?
由于某种原因,我无法通过 Eclipse 构建 apk。
如果我需要添加外部jar文件(包括*.class,*.properties..),哪些文件(Android.mk, AndroidManifest.xml、default.properties?)我需要修改吗?我应该如何修改?
For some reason I can't build apk by Eclipse.
If I need to add external jar file (include *.class, *.properties..), which files (Android.mk,
AndroidManifest.xml, default.properties?) do I need to modify and how should I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于基于 Ant 的标准构建,要包含第三方 JAR,请在项目中创建一个
libs/
目录并将 JAR 复制到其中。其他一切都由标准 Ant 构建脚本为您处理。For a standard Ant-based build, to include a third-party JAR, make a
libs/
directory in your project and copy the JAR there. Everything else is handled for you by the standard Ant build script.