0

我将我的应用程序放在 google play store 中,由于某些原因,它显示了一些错误。现在我做了这些更正,我想更新新的 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" >
4

2 回答 2

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" 
于 2013-03-28T10:03:15.177 回答
1

要更新您的应用程序,只需导出一个新的 apk 并使用与您的原始 apk 相同的证书对其进行签名。确保您已增加版本代码。

更新应用程序不会影响其下载次数。您的应用仍将具有相同的下载统计信息,任何仍安装该应用的用户都将通过 Google Play 收到更新通知,允许他们更新应用。

于 2013-03-28T10:03:22.937 回答