skip to Main Content

I’ve received an email from Google Play telling me that I have to upgrade the target API level (before August 31, 2023).

So if I go to my android folder -> app -> build.gradle, I assume I’ll have to change something here?

minSdkVersion 21
targetSdkVersion flutter.targetSdkVersion

Thank you for any help!

2

Answers


  1. minSdkVersion 22
    targetSdkVersion 33
    
    Login or Signup to reply.
  2. Yes, now as per google play console guidelines.

    Your app must target Android 13 (API level 33) or higher.

    targetSdkVersion 33
    

    From android play console ->

    From Aug 31, 2023, if your target API level is not within 1 year of the latest Android release, you won’t be able to update your app.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search