Created
March 12, 2024 02:15
-
-
Save shresthakamal/15d920e2581b146310d7913006270d8a to your computer and use it in GitHub Desktop.
Basic React Native Application commands - Starting emulator - Creating Application
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
| // Create an application | |
| npx create-expo-app rate-repository-app --template expo-template-blank@sdk-50 | |
| // Note, that the @sdk-50 sets the project's Expo SDK version to 50, which supports React Native version 0.73. | |
| // Install dependencies | |
| npx expo install react-native-web@~0.19.6 [email protected] @expo/metro-runtime@~3.1.1 | |
| // Start the emulator | |
| emulator -avd Pixel_8_API_34 | |
| // Start react-native app | |
| npm start |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment