如何在 Eclipse 之外编译项目
我从网站下载了一个项目。但我不想导入 Eclipse 来编译它并生成 < a href="http://en.wikipedia.org/wiki/APK_%28file_format%29" rel="nofollow">APK 文件。不太方便。那么有没有另一种方法来生成APK文件呢?
PS:该项目不包含 build.xml
文件。我更喜欢已签名的 APK 文件。
I have downloaded a project from a website. But I don‘t want to import to Eclipse to compile it and generate an APK file. It's not very convinient. So is there a another method to generate an APK file?
PS: the project doesn't contain the build.xml
file. I prefer an APK file that have been signed.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须使用 和 创建一个
build.xml
文件。请参阅关于 管理 和 从命令行构建项目。You will have to use and and create a
build.xml
file. Refer to the official documentation on managing and building projects from the command line.