Deployment

Ship your app to the Apple App Store, Google Play Store, and the web.

EAS Build

We recommend using Expo Application Services (EAS) for building and submitting your app. It handles signing credentials and native build processes in the cloud.

1. Install EAS CLI

1npm install -g eas-cli

2. Configure EAS

1eas build:configure

3. Run a Build

1# For iOS
2eas build --platform ios
3
4# For Android
5eas build --platform android

Over-the-Air Updates

Push critical bug fixes directly to users without waiting for App Store review using EAS Update.

1eas update --branch production --message "Fix critical bug"

Web Deployment

Since Twinbloc uses Expo Router, it has first-class support for web deployment.

1npx expo export

This command creates a dist directory that you can deploy to Vercel, Netlify, or any static host.

Last updated on 2/10/2026

Edit this page on GitHub