Google Play Store API 级别要求的最低 vs. 目标

huangapple go评论56阅读模式
英文:

Google Play Store API Level requirement minimum vs target

问题

Google表示,为了在Play商店发布新的应用程序或应用程序更新,您必须满足Google Play的新目标API级别要求:

从2022年8月开始,新应用程序必须以API级别31(Android 12)或更高版本为目标。
从2022年11月开始,应用程序更新必须以API级别31(Android 12)或更高版本为目标。

我的当前gradle构建目标为:

minSdkVersion 26
targetSdkVersion 33

然而,正如您所看到的,我的minSdkVersion针对较低版本。我是否必须升级MIN SDK VERSION以及TARGET版本?或者是否可以保持尽可能低以实现与旧设备的最大兼容性?

英文:

Google communicated that in order to publish a new app or an app update in the Play store, you must meet Google Play’s NEW target API level requirements:

Starting in August 2022, new apps must target API level 31 (Android 12) or above.
Starting in November 2022, app updates must target API level 31 (Android 12) or above.

My current gradle build target:

minSdkVersion 26
targetSdkVersion 33

However, as you can see my minSdkVersion targets a lower version. Do I have to upgrade the MIN SDK VERSION along with the TARGET version? Or can I still leave it as lower as posible for maximum compatibility with older devices?

答案1

得分: 6

现在是2023年4月(远远超过Google的2022年8月截止日期),我的应用程序通过了所有的审查,包括:

minSdkVersion 26
targetSdkVersion 33

所以,回答您的问题:

  1. 不,您不必将minSdkVersion与目标版本一起升级。
  2. 是的,您仍然可以将其保持尽可能低,以实现与旧设备的最大兼容性。
英文:

It is April 2023 now (way after Google's August 2022 deadline) and my apps pass all reviews with:

minSdkVersion 26
targetSdkVersion 33

So, answering your questions:

  1. No, you do not have to upgrade the minSdkVersion along with the TARGET version
  2. Yes, you can I still leave it as lower as possible for maximum compatibility with older devices.

答案2

得分: 3

如果这对任何人有所帮助... 我遇到了相同的问题和警告,而且Google一直指向我在封闭测试中暂停的旧版本。一旦我简单地取消选择那些版本上的测试人员,我就收到了所有问题都已解决的消息。

英文:

If this helps anyone... I was having the same issue and warnings, and Google was pointing to old versions I had paused in closed testing. Once I simply unselected the testers on those versions, I received a message that all issues had been resolved.

答案3

得分: 0

我升级targetSdkVersion到34后,我的Android设备仍然出现此警告。解决问题的方法是将minSdkVersion也升级到26。

英文:

Even after upgrading targetSdkVersion to 34 I was still getting this warning on my Android device. What got rid of was upgrading minSdkVersion to 26 as well.

huangapple
  • 本文由 发表于 2023年4月4日 17:03:53
  • 转载请务必保留本文链接:https://go.coder-hub.com/75927461.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定