Skip to main content
Mobile Launcher
Deployment

Deployment

Deploy your React Native app to App Store and Google Play

Deployment

Get your app into the App Store and Google Play Store. With MobileLauncher Standard, the entire process is streamlined through EAS Build, you run one command and we handle the rest.

Quick Start, Ship in 3 Commands

If you already have your developer accounts set up, here's all you need:

# 1. Build for both platforms yarn build:prod # 2. Submit to App Store eas submit --platform ios --profile production # 3. Submit to Google Play eas submit --platform android --profile production

That's it. EAS handles code signing, provisioning profiles, keystores, and upload for you.

First time? Follow the detailed guides below to set up your developer accounts and configure your project.

Platform Guides

Deployment Overview

Here is the high-level process for both platforms:

  1. Test locally, Run yarn ios and yarn android to verify everything works.
  2. Update version, Bump version and buildNumber / versionCode in app.json.
  3. Set production env, Ensure production keys are set in EAS Secrets or your .env.
  4. Build, Run yarn build:prod (builds both iOS and Android in the cloud via EAS).
  5. Submit, Use eas submit or upload manually through the store dashboards.

Pre-Launch Checklist

Go through this list before every release:

CategoryCheck
App AssetsIcons (1024x1024), splash screen, and screenshots are high quality
PermissionsRemoved unused permissions from app.json (infoPlist / permissions)
EnvironmentProduction API keys set in EAS Secrets (not hardcoded)
PrivacyPrivacy Policy URL is live and linked in store listings
TestingTested on a real device (not just simulator)
Versionversion, buildNumber (iOS), and versionCode (Android) are incremented
Store ListingDescription, screenshots, and metadata are complete

EAS Build Profiles

Your eas.json comes pre-configured with three profiles:

ProfileCommandUse Case
developmenteas build --profile developmentDevelopment builds with dev client
previeweas build --profile previewInternal testing builds
productionyarn build:prodApp Store & Google Play submission

Need Help?

If you get stuck during deployment, check the Troubleshooting guide or join our community.