英文:
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
所以,回答您的问题:
- 不,您不必将minSdkVersion与目标版本一起升级。
- 是的,您仍然可以将其保持尽可能低,以实现与旧设备的最大兼容性。
英文:
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:
- No, you do not have to upgrade the minSdkVersion along with the TARGET version
- 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.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论