Launch-Native Logo
Deployment (EAS)

App Store & Play Store

Submit your compiled app to Apple and Google automatically.

Once your app is ready for the world and you have created a production build, you can send it directly to App Store Connect and Google Play Console using EAS Submit.

1. Create a Production Build

First, you need to create the final production binaries:

eas build --profile production --platform all

2. Submit to the App Store (iOS)

Run the following command and follow the interactive prompts. EAS will automatically upload your file to Apple:

eas submit --platform ios

You will need to provide your Apple ID credentials the first time. After that, the app will appear in TestFlight and App Store Connect.

3. Submit to the Play Store (Android)

For Android, Google requires you to upload the very first version manually through the Google Play Console web interface. For all subsequent updates, EAS can automate the process:

eas submit --platform android

EAS will ask for a Google Cloud Service Account key to authenticate. Follow the CLI instructions to generate it.

🎉 Congratulations! Your SaaS is now live on the App Store and Google Play!