Google播放发布上传失败
Google Play Publish Upload Failed
我在 Google Play Store 上有一个应用程序,我想进行更新(同一个应用程序,新 apk 和新版本)。我之前的版本是 1.0.9.0,而我要上传的版本是 1.1.0.0。这是错误消息:
谢谢。
尝试更改您要发布的应用程序中的版本号
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.package.name"
android:versionCode="2"
android:versionName="1.1">
<application android:icon="@drawable/icon" android:label="@string/app_name">
</application>
版本代码 2 将修复...确保在上传播放之前保存并重新压缩
android:versionCode — An integer value that represents the version of
the application code, relative to other versions.
The value is an
integer so that other applications can programmatically evaluate it,
for example to check an upgrade or downgrade relationship. You can set
the value to any integer you want, however you should make sure that
each successive release of your application uses a greater value. The
system does not enforce this behavior, but increasing the value with
successive releases is normative.
Typically,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. This means that the
android:versionCode value does not necessarily have a strong
resemblance to the application release version that is visible to the
user (see android:versionName, below). Applications and publishing
services should not display this version value to users.
https://developer.android.com/tools/publishing/versioning.html
我在 Google Play Store 上有一个应用程序,我想进行更新(同一个应用程序,新 apk 和新版本)。我之前的版本是 1.0.9.0,而我要上传的版本是 1.1.0.0。这是错误消息:
谢谢。
尝试更改您要发布的应用程序中的版本号
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.package.name"
android:versionCode="2"
android:versionName="1.1">
<application android:icon="@drawable/icon" android:label="@string/app_name">
</application>
版本代码 2 将修复...确保在上传播放之前保存并重新压缩
android:versionCode — An integer value that represents the version of the application code, relative to other versions.
The value is an integer so that other applications can programmatically evaluate it, for example to check an upgrade or downgrade relationship. You can set the value to any integer you want, however you should make sure that each successive release of your application uses a greater value. The system does not enforce this behavior, but increasing the value with successive releases is normative.
Typically,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. This means that the android:versionCode value does not necessarily have a strong resemblance to the application release version that is visible to the user (see android:versionName, below). Applications and publishing services should not display this version value to users.
https://developer.android.com/tools/publishing/versioning.html