Skip to content

Instantly share code, notes, and snippets.

@chroline
Created March 6, 2022 18:01
Show Gist options
  • Select an option

  • Save chroline/056ebe473cab480a54c22974b839412d to your computer and use it in GitHub Desktop.

Select an option

Save chroline/056ebe473cab480a54c22974b839412d to your computer and use it in GitHub Desktop.
EAS commands
# Installing Expo & EAS CLIs
npm install --global expo-cli
npm install --global eas-cli
# Run app in Expo Go
expo start
# Enable EAS in project
eas build:configure
# Register device with EAS
eas device:create
# Install Expo Dev Client package
yarn add --dev expo-dev-client
# Create development build
eas build --profile development
# Create production-ready build
eas build
# Submit to app marketplaces
eas submit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment