skip to Main Content

Google Notice for my app
image Proof
My App bundle which was published on june 6

Why am i getting the notice from google that my app doesnot meet the android api level even though we can see in the image that the app targets API 34
and the i got the message from google on july 1 which is around 1 month after the app is published.

here is the part of build.gradle just to make sure

android {
namespace "xxx"
compileSdkVersion 34
ndkVersion flutter.ndkVersion

compileOptions {
    sourceCompatibility JavaVersion.VERSION_1_8
    targetCompatibility JavaVersion.VERSION_1_8
    coreLibraryDesugaringEnabled true
}

kotlinOptions {
    jvmTarget = '1.8'
}

sourceSets {
    main.java.srcDirs += 'src/main/kotlin'
}

defaultConfig {
    applicationId "xxx"
    minSdkVersion 28
    targetSdkVersion 34
    versionCode flutterVersionCode.toInteger()
    versionName flutterVersionName
    multiDexEnabled true
}
   
........

}

I have tried trying to make the minsdk to 34 but that resulted in having device limitations and all so i dont think i was supposed to change the minsdk so i didnt try to publish it

2

Answers


  1. Chosen as BEST ANSWER

    Thanks for help everyone i found out the problem was in my testing releases as it had bundles that were targeted for api 33 , i had paused the track and seemed to do the trick for me


  2. You don’t need to update a min SDK version, please verify on your end that you have uploaded the correct bundle on play store,

    If you still think it’s correct, then either you can submit a request to the google play store team or upload a new version on the play store.

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