Google Play上传新APK文件

问题描述:

我上传了一个alpha版APK,版本为1.0,并发布为alpha。我在应用程序中进行了一些更改,并希望更改之前的apk,但它说1.0已经存在。我试图上传1.0.1,但它说的相同。我该怎么办?Google Play上传新APK文件

+0

Ha您是否曾尝试先停用V1.0? – brandall 2014-10-04 18:24:19

+0

是的,但它说“至少有一个apk必须是活动的” – Namely 2014-10-04 18:26:03

+0

我想将我的应用程序发布为1.0:/不是2.0 – Namely 2014-10-04 18:27:50

老manifist文件

<manifest xmlns:android="http://schemas.android.com/apk/res/android" 
    package="com.example.urlconnectionclass" 
    android:versionCode="1" 
    android:versionName="1.0.0" > 

新清单文件

<manifest xmlns:android="http://schemas.android.com/apk/res/android" 
    package="com.example.urlconnectionclass" 
    android:versionCode="2" 
    android:versionName="1.1.0" > 

总是适当增加VERSIONCODE和VERSIONNAME的价值,同时uploding同一生产的APK

+0

谢谢,工作。 – Namely 2014-10-05 06:55:43

+0

很乐意帮助你。 – 2014-10-05 20:54:25

你在android清单中更改版本?从谷歌

两个重要的规则:

  1. 版本代码必须比当前版本更高。 Learn more about versioning your applications.

实施例:

<?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> 
</manifest> 

    开始=>
  1. 更新APK需要与相同的签名 当前版本进行签名。

  2. 的所有规则和要求: Update your apps

    +0

    我很高兴帮助你。你能给我正面的投票吗? – 2014-10-05 08:52:46