Tüm Rehberler

Expo ile Mobil Uygulama Geliştirme

Expo framework'ü ile hızlıca React Native mobil uygulama geliştirin.

Başlangıç15 dk

Kurulum Adımları

1. Expo CLI'yi kurun:

npm install -g expo-cli

2. Yeni proje oluşturun:

npx create-expo-app proje-adi
cd proje-adi

3. Geliştirme sunucusunu başlatın:

npx expo start

4. Telefonunuza Expo Go uygulamasını yükleyin (Play Store/App Store)

5. QR kodu tarayarak uygulamayı telefonunuzda test edin

6. Paket ekleme:

npx expo install expo-camera expo-location

7. EAS Build ile uygulama oluşturun:

npm install -g eas-cli
eas login
eas build:configure
eas build --platform android

8. iOS build:

eas build --platform ios

9. OTA güncellemeleri:

eas update --branch production

10. App Store/Play Store'a gönderme:

eas submit --platform android
eas submit --platform ios