我在 Playstore 上上传了一个具有不同架构的应用程序版本,现在我想用新版本上传我的应用程序但是得到了。
Error: You can't rollout this release because it doesn't allow any existing users to upgrade to the newly added APKs.
还有一些警告错误,比如
Device support removed
Warning
Deactivation of this APK will result in your app being available for new installs on fewer types of devices.
Tip
If this is an unintended change, then retain this APK in the new release or ensure that your new APKs support all currently supported devices.
现在,
Minimum API level : 16
Maximum API level : 26
更早的时候,它是
Minimum API level : 11
Maximum API level : 21
有人知道如何解决这个错误吗?
最佳答案
这是因为您将 minimum api 级别从 11 提高到 16,所以您的一些 android 16- 的潜在用户无法更新他们的应用程序。
更新
I cannot decrease the api level due to some library used Is there any solution to resolve this error
要回答您的问题,您可以在 play store 中上传多个 apk。一个具有支持 minSdk 11 的旧库,另一个具有支持 minSdk 16 的新库和可能的新功能。您可以找到所需的指南 here
关于android - 警告 : Deactivation of this APK will result in your app being available for new installs on fewer types of devices,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49443602/