向 Google Play 推送更新,以替换现有应用

Pushing an update to Google Play that will replace the existing app(向 Google Play 推送更新,以替换现有应用)
本文介绍了向 Google Play 推送更新,以替换现有应用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个当前在 Play 商店中的应用,我想发布一个更新,将现有应用替换为旧应用的改进版本.它们是分开开发的,所以这两个应用程序是完全不同的,尽管它们的目的都是一样的.

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 the old one. They were developed separately, so the two apps are way different, although they serve all the same purposes.

在新版本和旧版本中需要相同的地方是我能够发布的是更新而不是全新的应用程序?

What needs to be the same in the new version and the old version for me to be able to publish is as an update instead of a brand new app?

推荐答案

您描述的案例听起来像是对应用程序的完全重写.这完全符合 Google Play 的应用更新流程.

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 仅根据两个标准确定应用程序是更新:

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

  • 应用的包名
  • 及其版本代码

要被视为更新,您的新应用程序应与前一个应用程序具有完全相同的包名称(com.example.myapp"),以及它的 android:versionCode应该更高,在您的 AndroidManifest.xml 文件中.当然,您的 APK 应该使用您帐户的私钥进行签名,就像您在您的帐户下发布的任何应用程序一样.

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.

剩下的一切由你决定.

这篇关于向 Google Play 推送更新,以替换现有应用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

How to target newer versions in .gitlab-ci.yml using auto devops (java 11 instead of 8 and Android 31 instead of 29)(如何在.gitlab-ci.yml中使用自动开发工具(Java 11而不是8,Android 31而不是29)瞄准较新的版本)
Android + coreLibraryDesugaring: which Java 11 APIs can I expect to work?(Android+core LibraryDesugering:我可以期待哪些Java 11API能够工作?)
How to render something in an if statement React Native(如何在If语句中呈现某些内容Reaction Native)
How can I sync two flatList scroll position in react native(如何在本机Reaction中同步两个平面列表滚动位置)
Using Firebase Firestore in offline only mode(在仅脱机模式下使用Firebase FiRestore)
Crash on Google Play Pre-Launch Report: java.lang.NoSuchMethodError(Google Play发布前崩溃报告:java.lang.NoSuchMethodError)