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:
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:
Where I'm wrong?
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:
- Update your app to target Android 15 (API level 35) or higher.
- 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?