When you upload an APK, it must meet Google Play’s target API level requirements.

Starting on August 31, 2023:

  • New apps must target Android 13 (API level 33) or higher; except for Wear OS apps, which must target a version between Android 11 (API level 30) and Android 13 (API level 33), inclusive.

  • App updates must target Android 13 or higher and adjust for behavioral changes in Android 13; except for Wear OS apps, which must target Android 11.

Permanently private apps—which are restricted to users in a specific organization and are intended for internal distribution only—aren’t required to meet the target API level requirements.

  • Kresten@feddit.dk
    link
    fedilink
    English
    arrow-up
    7
    arrow-down
    12
    ·
    11 months ago

    That’s insanse. I’ll make phones outdated faster and using an old phone unviable

    • MakeItCount@lemmy.worldOP
      link
      fedilink
      English
      arrow-up
      33
      arrow-down
      1
      ·
      edit-2
      11 months ago

      this is about the targetSDK not the minSDK

      minSDK dictates if an app will work on your old device or not. Depending on how you build you app, the minSDK can be 14 (Android 4), 19 (Android 4) or 21 (Android 5). Google Play services do not support Android versions below SDK 19

      targetSDK is simply the way for the developer to say “my app works best with this SDK version and I want to use the new features”

      As long as your device has an higher version than the app’s minSDK the app will work. For example, if the app’s minSDK is 26 (Android 8), the app will only run on devices with Android 8 or higher.