Android:Play商店更新的Android版本代码

时间:2016-10-07 08:35:48

标签: android google-play-services android-manifest

我忘了我的应用程序的 VersionCode 我不知道它的版本,但我通过Play商店获得 VersionName

我只是想知道我可以分配任何更大的整数值,因为我知道它小于5或强制将其增加1

目前的清单是:

<?xml version="1.0" encoding="utf-8"?>

 android:versionCode="2"   // as i have forget this version
 android:versionName="1.0.1" >

我退回了 vesrion代码 ,所以想要更新Manifest:

    <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.gwnt.image.blur"
    android:versionCode="5" //updated to a new code
    android:versionName="1.0.4"  //came to know from play store which is 1.0.3

    >

该应用程序是否会在Play商店中更新

或增量为1是强制性的。

注意:我只是确认,因为我必须在 Play商店 更新我的应用程序。

2 个答案:

答案 0 :(得分:1)

你可以随意增加。请记住,以后你不能减少这个数字,如果你把最大整数放在那里你根本不能更新新版本。 更多信息:here

答案 1 :(得分:1)

您可以在开发者控制台中获取android:versionCode

  1. 登录开发者帐户
  2. 从侧边菜单中选择APK
  3. 您可以使用您的版本代码获得Production标签,还可以在相同标签上的inProd行中获取版本代码
  4. 示例:

    enter image description here

    此处,在PRODUCTION标签中,版本763,820是版本代码