Android Question Android35 and Google Play Consolle

Sganga61

Member
Licensed User
Longtime User
Hi.
Following the instruction to update to B4A 13.40 Version I set the Android.jat location to: F:\Android\platforms\android-36\android.jar (this is the only platform I have)

Before publish updates to my already published apps I change the Manifest to:
AddManifestText(
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="35"/>
<supports-screens android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:anyDensity="true"/>)

After publish the app I get this warning by google play consolle:

The app must target Android 15 (API level 35) or later. (you have just 93 days to solve the problem)

Solution
Your highest non-compliant target API level is Android 14 (API level 34).
To ensure you can continue to make updates to your app you must:

  1. Update your app to target Android 15 (API level 35) or higher.
  2. Publish a new version of your app to production. Before doing so, you can test the app using internal, closed, or open testing.

Where I'm wrong?
 

DonManfred

Expert
Licensed User
Longtime User
Your highest non-compliant target API level is Android 14 (API level 34).
Looks like you did not successfully upload the new apk with targetsdk 35 like shown.
 
Upvote 0

DonManfred

Expert
Licensed User
Longtime User
Update your Manifest

android:targetSdkVersion="35

See #1
He wrote he had changed his manifest

Before publish updates to my already published apps I change the Manifest to:

AddManifestText(
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="35"/>
<supports-screens android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:anyDensity="true"/>)
 
Upvote 0

asales

Expert
Licensed User
Longtime User
Did you check the send date of the warning?
I update several apps and (I think) this still shows because is an old warning.
1753963670788.png

(Sent date: July 1, 2025)
 
Upvote 0

Sganga61

Member
Licensed User
Longtime User
Looks like you did not successfully upload the new apk with targetsdk 35 like shown.
Yes, it's very strange.
Maybe the warning message is for the old release and still not updated.

I will wait until end of August and then start to be worried
Thank you
 
Upvote 0
Top