简体   繁体   English

如何在Google Play上更新应用

[英]How to update app on google play

im very new to the google play and mobile app world. 我对Google Play和移动应用程序世界非常陌生。

I would like to know the process of updating my app on the google play store as im not sure how. 我想知道在Google Play商店上更新我的应用的过程,因为我不确定如何进行。 It is Android app. 这是Android应用程序。

I am using xamarin for the app. 我正在为应用程序使用xamarin。 I have increased the version name to by .1 and if I do this, do I have to also increase the version number to 2 ? 我已经将版本名称增加了.1,如果这样做,是否还必须将版本号增加到2? because it cannot take decimal points. 因为它不能取小数点。

I have a simple understanding of It so im not sure if I have to create a new apk or update the existing one, and if so, how ? 我对它有一个简单的了解,所以我不确定是否必须创建一个新的apk或更新现有的apk,如果是,怎么做?

and then on google play, do I just go and select the new apk, or updated apk ? 然后在Google Play上,我只是去选择新的APK,还是更新的APK?

Thanks in advance 提前致谢

The version number (or version code) it's an integer value used to determine whether one version is more recent than another. 版本号(或版本代码)是一个整数值,用于确定一个版本是否比另一个版本新。 This is not shown to the end users. 不会显示给最终用户。 Every new version you make should have a higher number than the previous. 您制作的每个新版本均应具有比以前更高的编号。 You can simply increase the number by one each time a new version is released. 每次发布新版本时,您只需增加一个即可。

The version name is a string, and it's only meant to be shown to users. 版本名称是一个字符串,仅用于显示给用户。 It can be whatever you want, like "1.0" or "Beta 1.2.3". 它可以是您想要的任何内容,例如“ 1.0”或“ Beta 1.2.3”。

To update an app you just upload a new apk to Google Play, and the system uses its version number to find out what's the newest apk ank make it visible by default. 要更新应用,您只需将新的APK上传到Google Play,系统会使用其版本号来查找最新的APK默认情况下使其可见。

There is a very good, detailed, step-by-step process at http://developer.xamarin.com/guides/android/deployment,_testing,_and_metrics/publishing_an_application/ (which also explains the difference between version # and version name, among other things). http://developer.xamarin.com/guides/android/deployment,_testing,_and_metrics/publishing_an_application/中有一个非常好的,详细的分步过程(这也解释了版本号和版本名之间的区别,除其他事项外)。 Definitely worth a read! 绝对值得一读!

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM