其他分享
首页 > 其他分享> > AndroidManifest.xml文件的versionCode属性

AndroidManifest.xml文件的versionCode属性

作者:互联网

Android开发者网站上的Versioning Your Applications

you would release the first version of
your application with versionCode set
to 1, then monotonically increase the
value with each release, regardless
whether the release constitutes a
major or minor release.

这一切都很好,但如何处理这个序列?:

1 1.0
2 1.1
3 1.2
4 1.3
5 1.4
6 2.0
? 1.5

解决方法:

我认为按照这个顺序,你真的想说“如果我们想要发布下一代技术2.0,但仍然会发布针对1.0系列技术的1.5补丁版本?”

你的选择是:

>不要这样做 – 一旦你切换到2.0,继续使用2.0系列
>将2.0技术系列作为一个单独的应用程序发布,可能从1开始
>嗯……没有#3

我的猜测是你想要#2.毕竟,根据定义,您说应用程序有两个当前版本(1.5和2.0),因此实际上有两个不同的应用程序.

标签:android,versioning,xml
来源: https://codeday.me/bug/20190726/1547948.html