Skip to content

How to Publish a React Native App to the App Store using Expo

Prerequisites

Create Apple Developer Account

Prepare Your App

Update App Metadata

{
  "expo": {
    "name": "YourAppName",
    "slug": "your-app-slug",
    "version": "1.0.0",
    "orientation": "portrait",
    "icon": "./assets/icon.png",
    "splash": {
      "image": "./assets/splash.png",
      "resizeMode": "contain",
      "backgroundColor": "#ffffff"
    },
    "ios": {
      "bundleIdentifier": "com.yourcompany.yourapp",
      "buildNumber": "1.0.0"
    },
    ...
  }
}

Build the App

expo build # build app for both platforms
expo build:android # build app for android
expo build:ios # build app for ios
eas build

Configure XCode for Release

Publish the App

expo publish
eas submit

References