Android Apk提交目标

Android Apk Submission target

我尝试将更新后的应用程序提交到 Playstore。当我尝试在生产环境中上传 apk 时,有一条通知说

Play Store will require that new apps and app updates target a recent Android API level. This will be required for new apps in August 2018, and for updates to existing apps in November 2018. This is to ensure apps are built on the latest APIs optimized for security and performance.

目前,我的应用程序设置为 minSDKVersion 19 和 targetSDKVersion 为 23。

这是否意味着我必须将我的应用程序更新到 targetSDKVersion 26?

我试过修改并上传。我似乎对降级有错误的说法(抱歉,我应该记下该消息)。

August 2018: New apps required to target API level 26 (Android 8.0) or higher.

November 2018: Updates to existing apps required to target API level 26 or higher.

2019 onwards: Each year the targetSdkVersion requirement will advance. Within one year following each Android dessert release, new apps and app updates will need to target the corresponding API level or higher.

来源:https://android-developers.googleblog.com/2017/12/improving-app-security-and-performance.html

Does that mean I have to update my application to targetSDKVersion 26?

是的。但目前它只是一个警告,它将从 8 月初开始对新应用程序强制执行。请注意,应用更新的截止日期是 11 月。

have tried to change this and upload it. I seems to have error saying about the downgrade

由于您没有完整的错误消息,导致此问题的一个可能原因是,您尝试上传的应用程序的版本代码低于 Play 商店中可用的应用程序版本代码。重新检查您的版本代码并在需要时增加它。