Getting started with Expo
April 1, 2019
Expo Start (2024)
Empfohlen ist heute create-expo-app und EAS Build.
Projekt anlegen
code
npx create-expo-app@latest my-app
cd my-app
npm run start
Du bekommst ein Dev Server UI und einen QR Code fuer Expo Go.
Expo Go App
- Android: Play Store
- iOS: App Store
Scan den QR Code aus dem Dev Server.
Lokales Development
code
npm run android
npm run ios
Fuer Emulatoren brauchst du Android Studio bzw. Xcode.
Publish / OTA Updates
Mit EAS Updates:
code
npx expo login
npx eas update --branch preview
Build fuer Stores
EAS Build:
code
npx eas build -p android
npx eas build -p ios