Hi everyone, I would like to point out that in the app manifest I currently have...
Despite there being targetSdkVersion="34" in the app manifest (as you can see), on Google Play Console I read: "Policy violations, App must target Android 13 (API level 33) or later. subsequent" with a red icon with an exclamation mark.
At this point I wonder, since the violation of Google Play rules continues to appear: is it sufficient to declare targetSdkVersion="34" within the app manifest, or do I also have to do other ?
B4X:
'This code will be applied to the manifest file during compilation.
'You do not need to modify it in most cases.
'See this link for more information: https://www.b4x.com/forum/showthread.php?p=78136
AddManifestText(
<uses-sdk android:minSdkVersion="5" android:targetSdkVersion="34"/>
........
Despite there being targetSdkVersion="34" in the app manifest (as you can see), on Google Play Console I read: "Policy violations, App must target Android 13 (API level 33) or later. subsequent" with a red icon with an exclamation mark.
At this point I wonder, since the violation of Google Play rules continues to appear: is it sufficient to declare targetSdkVersion="34" within the app manifest, or do I also have to do other ?