本文介绍了当您提高minSdkVersion时,当前在Google Play中的安装会如何?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在提高minSdkVersion并且其SDK版本低于此水平时,安装了该应用程序的现有用户会怎么办?

What happens to existing users with the app installed when minSdkVersion is raised and their SDK version is less than that?

他们是否仍然从Google Play获取更新,但随后发生了崩溃?还是他们停止从Google Play获取更新?

Do they still get the update from Google Play with a subsequent crash? Or do they stop getting updates from Google Play?

推荐答案

以下发生在minSdkVersion更改

  1. 在apk上传中, Google会在minSdkVersion上警告您,告诉您将影响多少用户.
  2. 低于minSdkVersion 的现有用户将无法获取更新,并且无法在PlayStore中查看应用
  3. 低于minSdkVersion的现有用户(如果卸载),无法重新安装该应用程序.
  1. On apk upload, Google plays warns you on minSdkVersion telling how many users will be affected.
  2. Existing users lower than minSdkVersion won't get update and cannotsee app in PlayStore
  3. Existing users lower than minSdkVersion, if they uninstall, cannotreinstall the application.

我建议您在PlayStore中使用多个apk选项,并继续更新较新的apk.只需保留旧版本即可.

有关更多信息,请阅读多个apk支持.

For more, read the android documentation on multiple apk support.

这篇关于当您提高minSdkVersion时,当前在Google Play中的安装会如何?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!