从命令行构建android项目
我想在 Linux 上从命令行构建 android 项目。在项目的根目录中有以下文件和目录:
AndroidManifest.xml build.xml default.properties res/ src/
您能否提供一个示例 Makefile
如何建立这个项目?
I would like to build and android project from command line on Linux. In the root directory of the project there are the following files and directories:
AndroidManifest.xml build.xml default.properties res/ src/
Can you provide a sample Makefile
how to build this project?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你安装了“蚂蚁”吗?尝试
ant调试
Do you have 'ant' installed? Try
ant debug
build.xml 文件被输入到 Ant 程序,它将构建您的项目。使用“蚂蚁构建”
The build.xml file is input to the Ant program, which will build your project. Use "ant build"