Solution: App must target Android 13 (API level 33) or higher
Issue: Update your target API level by August 31, 2023 to ensure that your app is available to new users (App must target Android 13)
We’ve detected that your app is targeting an old version of Android. To provide users with a safe and secure experience, Google Play requires all apps to meet target API level requirements.
From August 31, 2023, if your target API level is not within 2 years of the latest Android release, your app will not be available to new users running Android versions higher than your app’s target API level.
To ensure that your app is available to new users, update your app to target Android 12 (API level 31).
Solution: target Android 13
You need to update your app with targeted API 33
defaultConfig {
applicationId "com.abc.example"
minSdkVersion 24
targetSdkVersion 33 //update to 33
versionCode 1
versionName "1.0"
}