Publish Mobile App
Publish your React Native app to the App Store and Google Play.
Prerequisites
- Apple Developer Account ($99/year) for iOS
- Google Play Developer Account ($25 one-time) for Android
- EAS CLI:
npm install -g eas-cli
iOS — App Store
1. Build
cd your-mobile-app
eas build --platform ios
2. Submit
eas submit --platform ios
3. App Store Connect
- Go to App Store Connect
- Fill in app metadata, screenshots, description
- Submit for review
Android — Google Play
1. Build
eas build --platform android
2. Submit
eas submit --platform android
3. Google Play Console
- Go to Google Play Console
- Create your app listing
- Upload screenshots and submit for review
Over-The-Air Updates
Push updates to users without going through app store review:
eas update --branch production