Expo builds vs. Turtle builds
July 1, 2020
Kontext
Expo Classic (expo build) und Turtle sind legacy.
Heute ist EAS Build der Standard.
Vergleich (historisch)
| Expo Classic (expo build) | Turtle (self-hosted) |
|---|---|
| Builds auf Expo Servern | Eigene Infrastruktur |
| OTA von Expo CDN | OTA von eigener URL |
| Build Queue | Kontrolle + schneller, aber mehr Setup |
OTA Updates (wichtig)
Apps laden JS Bundle von einer Update URL. Wenn diese URL kaputt ist und updates.checkAutomatically = ON_LOAD, kann die App beim Start leer bleiben.
EAS Build (heute)
Empfehlung:
code
npx eas build -p android
npx eas build -p ios
EAS Updates fuer OTA:
code
npx eas update --branch production
Fazit
Wenn du neu startest: EAS Build + EAS Update. Turtle nur, wenn du alte Expo Classic Pipelines pflegen musst.