Pushing an update to Google Play that will replace the existing app

后端 未结 2 427
没有蜡笔的小新
没有蜡笔的小新 2020-12-21 23:11

I have an app that is currently on the Play Store, and I would like to publish an update that will replace the existing app with another app that is an improved version of t

相关标签:
2条回答
  • 2020-12-21 23:36

    The case you are describing sounds like a complete rewriting of the application. This is perfectly in line with the application update process of Google Play.

    Google-play determines that an application is an update based on two criteria only:

    • the package name of the app
    • and its version code

    To be considered as an update, your new app should have exactly the same package name as the former one ("com.example.myapp"), and its android:versionCodeshould be higher, in your AndroidManifest.xml file. Of course, your APK should be signed with your account's private key, like any application you publish under your account.

    All the rest is up to you.

    0 讨论(0)
  • 2020-12-21 23:46

    If they share the same unique key, you can overwrite the existing app with the new one. It doesn't make any difference how much it's changed. Play will automatically take care of notifying exising users of updates, and depending on their settings, update them automatically.

    If your new version does NOT share the same unique key, you have no choice but to put up a new app.

    0 讨论(0)
提交回复
热议问题