Home > front end >  Cordova application Android compatibility
Cordova application Android compatibility

Time:12-22

I just published my application on Google play. My config sets min and target Android versions:

<preference name="android-minSdkVersion" value="23" />
<preference name="android-targetSdkVersion" value="31" />

It doesn`t set android-maxSdkVersion as suggested. Alghout this, the application is not available for Android 13 devices. This screenshot comes from Google Play:

enter image description here

What can be wrong?

CodePudding user response:

So, finally I found the solution - it is necessary to install SDK 33 under Android studio, update Java to version 11 and set target SDK to at least 32. Once I did this, the automatic max version was removed from Google Play.

CodePudding user response:

You can set your max version to override this

 <preference name="android-maxSdkVersion" value="33" />
  • Related