通过 eclipse 进行 Android 应用程序版本控制
我知道应用程序版本是在清单 xml 文件中定义的,但是有没有任何工具可以在 Eclipse 中设置版本号,而无需手动更改清单本身?谢谢。
I know that the application version is defined in the manifest xml file, but is there any tool to set the version number in Eclipse, without manually changing the manifest itself? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我使用 ant 脚本和 xmltask 来更新清单中的内部版本号。这是目标:
这将版本名称设置为 1.0.xxx,其中 xxx 被传递到 ant 的 buildnum 属性中。您也可以轻松更新版本号。如果您能想出一种创建和增加内部版本号的方法,那么这应该很容易适应。
I use an ant script and xmltask to update the build number in my manifest. This is the target:
This sets the version name to 1.0.xxx where xxx is passed into ant in the buildnum property. You could just as easily update the version number instead. If you can come up with a way to create and increment a build number this should be easy to adapt.
这取决于您如何定义“手动”。
如果您在 eclipse 中双击 AndroidManifest.xml 文件(并且您已正确设置环境),您应该会获得一个包含所有可以选择的选项的 GUI。最左侧选项卡上的其中之一是更改版本号、版本名称和版本代码。
编辑:更准确地说:
It depends on how you define 'manually'.
If you double click the AndroidManifest.xml file in eclipse (and you have your environment set up properly), you should get a GUI with all of the options you can select. One of them on the leftmost tab is to change the version number, both the version name, and the version code.
Edit: To be more precise:
我做了我自己的Java工具来做。可以在这里找到:
android 清单构建号
功能:
希望这有帮助:-)
I did my own Java tool to do. Available here:
android manifest build number
Features:
Hope this help :-)