Issue
This Message was appear when i upload my app bundle to play store
Your app currently targets API level 29 and must target at least API level 30 to ensure it is built on the latest APIs optimized for security and performance. Change your app's target API level to at least 30.
Solution
If you have a managed workflow expo app. To make expo target new Api level 30, you need to upgrade your app to Expo SDK 41 or higher. Do the following ;
- Upgrade your expo cli to 41 or higher - npm i -g expo-cli [email protected]
- Run expo upgrade on your project
- Create a new build of your app for Google Paystore - expo build:android
This will now target api 30
Answered By - AyoDavid