如何使用ant从build.xml中的manifest.xml读取版本代码
我想将我的 apk 从 myapp-release.apk 重命名为 myapp-1.0.30.apk。我想在 build.xml 中执行此操作。我想读取清单中的版本,然后重命名该 apk。 我正在使用 ant 来完成此操作。
谢谢, 斯内哈
I want to rename my apk from myapp-release.apk to myapp-1.0.30.apk. I want to do this in build.xml. I want to read the version in my manifest and then rename the apk.
I am doin this using ant.
thanks,
sneha
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我找到了我自己问题的答案:
I found the answer to my own question:
只需使用 https://stackoverflow.com/a/5318044/130683 中的 Macrodef 并根据您的需求进行调整,意味着类似于:
之后使用属性 ${foobar} 重命名您的文件:
Just use the macrodef from https://stackoverflow.com/a/5318044/130683 and adapt it to your needs, means something like :
afterwards use property ${foobar} for renaming your file :