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
EDAP TECHNOLOGY is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
1