1---2name: react-native-expo3description: Build and maintain React Native apps with Expo SDK, EAS Build, EAS Update, and Continuous Native Generation. Use when configuring Expo projects, adding native modules, building binaries, or shipping over-the-air updates.4---5
6> The skill is based on Expo SDK (docs from expo/expo repo), generated at 2026-02-26.
7
8Expo provides tooling and services for React Native: app config and Prebuild (Continuous Native Generation), Expo SDK packages, development builds, EAS Build (cloud builds and internal distribution), and EAS Update (over-the-air JS updates). Use development builds for production apps; Expo Go is a limited playground.
9
10## Core References
11
12| Topic | Description | Reference |
13|-------|-------------|-----------|
14| App config | app.json, app.config.js/ts, dynamic config, reading in app | [core-config](references/core-config.md) |
15| Development workflow | Dev loop, development builds vs Expo Go, when to rebuild | [core-development-workflow](references/core-development-workflow.md) |
16| Development and production modes | __DEV__, --no-dev --minify, when to use each | [core-development-mode](references/core-development-mode.md) |
17| Metro | metro.config.js, resolver, transformer, cache, env vars | [core-metro](references/core-metro.md) |
18| Logging | Console in terminal, native logs, log-android / log-ios | [core-logging](references/core-logging.md) |
19| CNG and Prebuild | npx expo prebuild, --clean, EAS Build and native dirs | [core-continuous-native-generation](references/core-continuous-native-generation.md) |
20
21## Features
22
23### Expo SDK and native code
24
25| Topic | Description | Reference |
26|-------|-------------|-----------|
27| Expo SDK and third-party libs | Install with npx expo install, compatibility, config plugins | [features-expo-modules](references/features-expo-modules.md) |
28| expo-constants | App manifest, build info, system constants, extra/env at runtime | [features-sdk-constants](references/features-sdk-constants.md) |
29| expo-image | Performant image component, caching, BlurHash/ThumbHash, contentFit | [features-sdk-image](references/features-sdk-image.md) |
30| expo-file-system | File and directory API, Paths.cache/document, read/write, download | [features-sdk-filesystem](references/features-sdk-filesystem.md) |
31| expo-secure-store | Encrypted key-value store, optional biometric auth | [features-sdk-secure-store](references/features-sdk-secure-store.md) |
32| Config plugins | Use and write plugins to modify AndroidManifest, Info.plist during prebuild | [features-config-plugins](references/features-config-plugins.md) |
33| Native modules | Expo Modules API, local module, config plugin for native config, lifecycle | [features-native-modules](references/features-native-modules.md) |
34
35### EAS Build and Submit
36
37| Topic | Description | Reference |
38|-------|-------------|-----------|
39| EAS Build | Cloud builds, eas.json profiles, development/preview/production | [features-eas](references/features-eas.md) |
40| EAS Submit | Submit to Google Play and App Store (TestFlight), eas.json, CI | [features-eas-submit](references/features-eas-submit.md) |
41
42### Development experience
43
44| Topic | Description | Reference |
45|-------|-------------|-----------|
46| iOS Simulator and Android emulator | Setup, npx expo start + i/a, limitations, troubleshooting | [features-simulators-emulators](references/features-simulators-emulators.md) |
47
48### Updates and versioning
49
50| Topic | Description | Reference |
51|-------|-------------|-----------|
52| expo-updates and EAS Update | OTA updates, runtime version, channels | [features-updates](references/features-updates.md) |
53| Upgrading Expo SDK | Incremental upgrade, npx expo install --fix, expo-doctor | [features-versioning](references/features-versioning.md) |
54
55## Best practices
56
57| Topic | Description | Reference |
58|-------|-------------|-----------|
59| Debugging | Dev vs production errors, native logs, reproducing crashes | [best-practices-debugging](references/best-practices-debugging.md) |
60| Common development errors | Metro, AppRegistry, SDK version, version mismatch, caches | [best-practices-common-errors](references/best-practices-common-errors.md) |