I am facing an issue with Google Play Console:
Google shows a warning that my app is not using Android 13 (API-Level 33) although I set the target SDK to 33 in the config file: <preference name=“android-targetSdkVersion” value=“33” />
<preference name=“android-minSdkVersion” value=“28” />
I did not set the engine tag for android 12.0.0 like <engine name=“android” spec=“12.0.0” />
So I now changed the config and added the engine to my version 2.00.118:
<engine name=“android” spec=“12.0.0” />
<preference name=“android-minSdkVersion” value=“28” />
<preference name=“android-targetSdkVersion” value=“33” />
App also uploaded to Play Console and rolled out on all stages
The same thing has been happening to me, but when I’ve looked closely I realize that the warning is for a test version build and not the production version. In the same warning there is an option to see the affected packages, check if your case is the same.
Just now checked play console again. Message now disappeared. Seems that Google needs some time to recheck and mark as resolved. I also got from Google now a message in my inbox. Thx
As far as I know it should affect what devices can install the application only, but otherwise not affect anything related to SDK used etc. A low value can lead to incompatibilities though, but I’ve tested on that level.
Adding android-compileSdkVersion might be redundant.