通过 eclipse 进行 Android 应用程序版本控制

发布于 2024-12-10 19:00:03 字数 75 浏览 0 评论 0原文

我知道应用程序版本是在清单 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

难忘№最初的完美 2024-12-17 19:00:03

我使用 ant 脚本和 xmltask 来更新清单中的内部版本号。这是目标:

<target name="update.build.number">
    <xmltask source="AndroidManifest.xml" dest="AndroidManifest.xml">
        <replace path="manifest/@android:versionName"
                 withText="1.0.${buildnum}"/>
    </xmltask>
</target>

这将版本名称设置为 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:

<target name="update.build.number">
    <xmltask source="AndroidManifest.xml" dest="AndroidManifest.xml">
        <replace path="manifest/@android:versionName"
                 withText="1.0.${buildnum}"/>
    </xmltask>
</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.

粉红×色少女 2024-12-17 19:00:03

这取决于您如何定义“手动”。

如果您在 eclipse 中双击 AndroidManifest.xml 文件(并且您已正确设置环境),您应该会获得一个包含所有可以选择的选项的 GUI。最左侧选项卡上的其中之一是更改版本号、版本名称和版本代码。

编辑:更准确地说:

  1. 打开 GUI AndroidManifest.xml 编辑器。
  2. 单击
  3. 清单常规属性中的清单选项卡,您应该会看到版本代码和版本名称。

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:

  1. Open the GUI AndroidManifest.xml editor.
  2. Click on the Manifest Tab
  3. In Manifest General Attributes you should see version code and version name.
卷耳 2024-12-17 19:00:03

我做了我自己的Java工具来做。可以在这里找到:
android 清单构建号

功能:

  • versionName 应该是主要版本。 minor.point (按照 Android 文档的建议)
  • versionName 可以被保留、重置为 1.0.0 或递增(它的一个部分和尾随部分设置为 0)
  • versionCode 将被替换为 Unix Time

希望这有帮助:-)

I did my own Java tool to do. Available here:
android manifest build number

Features:

  • versionName is supposed to be major.minor.point (as advised by Android doc)
  • versionName can be preserved, reset to 1.0.0, or incremented (one single part of it and trailing part(s) is/are set to 0)
  • versionCode will be replaced by Unix Time

Hope this help :-)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文