uni-app submits the aab version to Google Play and prompts that the API level is too low

Original text link: Uni-App submits the App application to Google Play and prompts that the API level is too low.

problem found

When preparing to release a new version on Google Play recently, a prompt Change your app's target API level to at least 31appeared .



After reviewing relevant materials, I learned that new apps must target Android 12 (API level 31) or higher, except for Wear OS apps, which must target Android 11 (API level 30) or higher platform. Beginning January 2023, app updates must target Android 12 or higher and adjust for behavior changes in Android 12, except for Wear OS apps, which must target Android 11 or higher platform .

For details, please see: Meet Google Play's target API level requirements .

Solve the problem

At this time, you only need to set the targetSdkVersion of the App common other settings in the application configuration file manifest.json to 31 , and then resubmit to the cloud package, and submit the packaged aab to Google Play again, and no error will be reported again.

Fill in the necessary information of the app, submit it for review, and it will be available on Google Play in about two working days (provided that your app does not violate the regulations~).

Guess you like

Origin blog.csdn.net/qq_41356250/article/details/128581920