Skip to content

Instantly share code, notes, and snippets.

@shresthakamal
Created March 12, 2024 02:15
Show Gist options
  • Save shresthakamal/15d920e2581b146310d7913006270d8a to your computer and use it in GitHub Desktop.
Save shresthakamal/15d920e2581b146310d7913006270d8a to your computer and use it in GitHub Desktop.
Basic React Native Application commands - Starting emulator - Creating Application
// 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