Deployment
EAS Submit
Submitting builds to the App Store and Play Store via EAS Submit.
EAS Submit
EAS Submit handles uploading builds to the App Store and Google Play Store.
App Store (iOS)
eas submit --platform iosThis uploads the latest iOS build to App Store Connect. You'll need:
- An Apple Developer account
- App Store Connect API key (or Apple ID credentials)
- The app must be created in App Store Connect first
Play Store (Android)
eas submit --platform androidThis uploads the latest Android build to the Google Play Console. You'll need:
- A Google Play Developer account
- Google Service Account JSON key with appropriate permissions
- The app must be created in the Play Console first
Automated Submission
You can chain build and submit:
eas build --platform ios --auto-submit
eas build --platform android --auto-submitThis automatically submits the build after it completes.
Credentials Management
# View and manage all credentials
eas credentials
# Platform-specific
eas credentials --platform ios
eas credentials --platform android