Google communicated that in order to publish a new app or an app update in the Play store, you must meet Google Play’s NEW target API level requirements:
Starting in August 2022, new apps must target API level 31 (Android 12) or above. Starting in November 2022, app updates must target API level 31 (Android 12) or above.
My current gradle build target:
minSdkVersion 26
targetSdkVersion 33
However, as you can see my minSdkVersion targets a lower version. Do I have to upgrade the MIN SDK VERSION along with the TARGET version? Or can I still leave it as lower as posible for maximum compatibility with older devices?