Created
March 6, 2022 18:01
-
-
Save chroline/056ebe473cab480a54c22974b839412d to your computer and use it in GitHub Desktop.
EAS commands
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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