I have application on google play and I received message that I must update api to support android 13 or higher, because my application targets android 10.
This is very weird, because my application targets level 33 already (as shown on picture below).
In build.gradle I set (i believe correctly)
android {
compileSdkVersion 33
buildToolsVersion '32.0.0'
defaultConfig {
minSdkVersion 14
targetSdkVersion 33
}
Do I set build.gradle correctly to target api level 33+? Does someone experience the same warning from google ?