Skip to main content

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

  1. Go to App Store Connect
  2. Fill in app metadata, screenshots, description
  3. Submit for review

Android — Google Play

1. Build

eas build --platform android

2. Submit

eas submit --platform android

3. Google Play Console

  1. Go to Google Play Console
  2. Create your app listing
  3. Upload screenshots and submit for review

Over-The-Air Updates

Push updates to users without going through app store review:

eas update --branch production

Resources