2013-03-28 15 views
0

我把我的应用程序放在谷歌Play商店,由于某些原因,它显示了一些错误。现在我做了这些更正,我想更新新的apk,而不减少我的旧下载数量和他们的评级和comments.Is这种可能在不降低旧版下载的情况下更新apk如何更新我的apk,而不关闭我的旧应用程序?

<?xml version="1.0" encoding="utf-8"?> 
<manifest xmlns:android="http://schemas.android.com/apk/res/android" 
    package="com.ibetter.recipestutors" 
    android:versionCode="1" 
    android:versionName="1.1" > 

回答

1

要更新的应用程序,只需导出一个新的APK,并使用同一证书作为原著的APK签名。确保你增加了版本代码。

更新应用程序将不会影响其下载计数。您的应用仍将具有相同的下载统计信息,并且所有仍安装此应用的用户都将通过Google Play收到更新通知,以便他们更新应用。

+0

我想仅更改版本代码,是否够用 – Maruthi042 2013-03-28 10:06:49

+0

@ Maruthi042这是唯一需要更改的内容。版本名称可以保持不变,或可以更改。由你决定。软件包名称不能更改 – 2013-03-28 10:07:33

+0

,谢谢,我想更改我的版本代码为1.2或我想要的 – Maruthi042 2013-03-28 10:09:05

1

您只需在清单中增加您的应用程序版本代码即可。但保持相同的软件包名称:

<manifest xmlns:android="http://schemas.android.com/apk/res/android" 
    package="dont change the package name" 
    android:installLocation="auto" 
    android:versionCode="increase by 1 every time you want to upload new apk" 
    android:versionName="this can remain same but better change depending on the versionCode" 
+0

<?xml version =“1.0”encoding =“utf-8”?> Maruthi042 2013-03-28 10:05:04

+0

版本: http://developer.android.com/tools/publishing/versioning.html 上传: HTTP:// support.andromo.com/kb/distributing/how-to-update-your-app-in-google-play – gkiko 2013-03-28 10:05:48

+0

是的。因此,将'versionCode设置为2'和'versionName设置为1.2',或者如果更改太小,则可以保持相同。其他一切像包名称,击键等将保持不变。如果您喜欢,请在上传APK时添加**新内容**,以便用户知道新版本中添加或更改的内容,以决定是更新其当前版本还是更新其当前版本不。 – 2013-03-28 10:07:49

相关问题