我忘了我的应用程序的 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商店 更新我的应用程序。