警告:停用此 APK 将导致您的应用可在更少类型的设备上进行新安装
Warning : Deactivation of this APK will result in your app being available for new installs on fewer types of devices
我在 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
我在 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