[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-expo-expo-dev-client":3,"mdc--espp6q-key":40,"related-org-expo-expo-dev-client":1511,"related-repo-expo-expo-dev-client":1676},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":29,"repoUrl":30,"updatedAt":31,"license":32,"forks":33,"topics":34,"repo":35,"sourceUrl":38,"mdContent":39},"expo-dev-client","build and distribute Expo development clients","Framework (OSS). Build and distribute Expo development clients locally or via TestFlight for internal testing. For production TestFlight releases and store submission, use the eas-app-stores skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"expo","Expo","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fexpo.png",[12,16,17,20,23,26],{"name":13,"slug":14,"type":15},"Android","android","tag",{"name":9,"slug":8,"type":15},{"name":18,"slug":19,"type":15},"iOS","ios",{"name":21,"slug":22,"type":15},"Mobile","mobile",{"name":24,"slug":25,"type":15},"Local Development","local-development",{"name":27,"slug":28,"type":15},"Deployment","deployment",2190,"https:\u002F\u002Fgithub.com\u002Fexpo\u002Fskills","2026-07-24T05:36:51.160719","MIT",111,[],{"repoUrl":30,"stars":29,"forks":33,"topics":36,"description":37},[],"A collection of AI agent skills for working with Expo projects and Expo Application Services","https:\u002F\u002Fgithub.com\u002Fexpo\u002Fskills\u002Ftree\u002FHEAD\u002Fplugins\u002Fexpo\u002Fskills\u002Fexpo-dev-client","---\nname: expo-dev-client\ndescription: Framework (OSS). Build and distribute Expo development clients locally or via TestFlight for internal testing. For production TestFlight releases and store submission, use the eas-app-stores skill.\nversion: 1.1.0\nlicense: MIT\n---\n\nUse EAS Build to create development clients for testing native code changes on physical devices. Use this for creating custom Expo Go clients for testing branches of your app.\n\n> **Free locally; cloud builds are paid.** `expo-dev-client` itself is open source and building locally is free. Building or distributing via EAS Build\u002FTestFlight uses your EAS plan's build minutes and needs a paid Apple Developer account for device\u002FTestFlight distribution. See https:\u002F\u002Fexpo.dev\u002Fpricing.\n\n## Important: When Development Clients Are Needed\n\n**Development clients are the recommended setup for any real or production app.** Expo Go is a playground for learning and quick experiments with the native libraries it bundles; most apps outgrow it and move to a development client. See [Expo Go vs. development builds](https:\u002F\u002Fdocs.expo.dev\u002Fdevelop\u002Fdevelopment-builds\u002Fintroduction\u002F) for the full reasoning.\n\nYou need a dev client ONLY when using:\n\n- Local Expo modules (custom native code)\n- Apple targets (widgets, app clips, extensions)\n- Third-party native modules not in Expo Go\n- Config plugins, or testing remote push notifications and App\u002FUniversal Links\n\n## EAS Configuration\n\nEnsure `eas.json` has a development profile:\n\n```json\n{\n  \"cli\": {\n    \"version\": \">= 16.0.1\",\n    \"appVersionSource\": \"remote\"\n  },\n  \"build\": {\n    \"production\": {\n      \"autoIncrement\": true\n    },\n    \"development\": {\n      \"autoIncrement\": true,\n      \"developmentClient\": true\n    }\n  },\n  \"submit\": {\n    \"production\": {},\n    \"development\": {}\n  }\n}\n```\n\nKey settings:\n\n- `developmentClient: true` - Bundles expo-dev-client for development builds\n- `autoIncrement: true` - Automatically increments build numbers\n- `appVersionSource: \"remote\"` - Uses EAS as the source of truth for version numbers\n\n## Building for TestFlight\n\nBuild iOS dev client and submit to TestFlight in one command:\n\n```bash\neas build -p ios --profile development --submit\n```\n\nThis will:\n\n1. Build the development client in the cloud\n2. Automatically submit to App Store Connect\n3. Send you an email when the build is ready in TestFlight\n\nAfter receiving the TestFlight email:\n\n1. Download the build from TestFlight on your device\n2. Launch the app to see the expo-dev-client UI\n3. Connect to your local Metro bundler or scan a QR code\n\n## Building Locally\n\nBuild a development client on your machine:\n\n```bash\n# iOS (requires Xcode)\neas build -p ios --profile development --local\n\n# Android\neas build -p android --profile development --local\n```\n\nLocal builds output:\n\n- iOS: `.ipa` file\n- Android: `.apk` or `.aab` file\n\n## Installing Local Builds\n\nInstall iOS build on simulator:\n\n```bash\n# Find the .app in the .tar.gz output\ntar -xzf build-*.tar.gz\nxcrun simctl install booted .\u002Fpath\u002Fto\u002FApp.app\n```\n\nInstall iOS build on device (requires signing):\n\n```bash\n# Use Xcode Devices window or ideviceinstaller\nideviceinstaller -i build.ipa\n```\n\nInstall Android build:\n\n```bash\nadb install build.apk\n```\n\n## Building for Specific Platform\n\n```bash\n# iOS only\neas build -p ios --profile development\n\n# Android only\neas build -p android --profile development\n\n# Both platforms\neas build --profile development\n```\n\n## Checking Build Status\n\n```bash\n# List recent builds\neas build:list\n\n# View build details\neas build:view\n```\n\n## Using the Dev Client\n\nOnce installed, the dev client provides:\n\n- **Development server connection** - Enter your Metro bundler URL or scan QR\n- **Build information** - View native build details\n- **Launcher UI** - Switch between development servers\n\nConnect to local development:\n\n```bash\n# Start Metro bundler\nnpx expo start --dev-client\n\n# Scan QR code with dev client or enter URL manually\n```\n\n## Troubleshooting\n\n**Build fails with signing errors:**\n\n```bash\neas credentials\n```\n\n**Clear build cache:**\n\n```bash\neas build -p ios --profile development --clear-cache\n```\n\n**Check EAS CLI version:**\n\n```bash\neas --version\neas update\n```\n\n## Submitting Feedback\nIf you encounter errors, misleading or outdated information in this skill, report it so Expo can improve:\n```bash\nnpx --yes submit-expo-feedback@latest --category skills --subject \"expo-dev-client\" \"\u003Cactionable feedback>\"\n```\nOnly submit when you have something specific and actionable to report. Include as much relevant context as possible.\n",{"data":41,"body":43},{"name":4,"description":6,"version":42,"license":32},"1.1.0",{"type":44,"children":45},"root",[46,54,87,94,113,118,143,149,162,574,579,615,621,626,673,678,697,702,720,726,731,828,833,869,875,880,952,957,990,995,1019,1025,1144,1150,1204,1210,1215,1248,1253,1306,1312,1320,1339,1347,1386,1394,1425,1431,1436,1500,1505],{"type":47,"tag":48,"props":49,"children":50},"element","p",{},[51],{"type":52,"value":53},"text","Use EAS Build to create development clients for testing native code changes on physical devices. Use this for creating custom Expo Go clients for testing branches of your app.",{"type":47,"tag":55,"props":56,"children":57},"blockquote",{},[58],{"type":47,"tag":48,"props":59,"children":60},{},[61,67,69,75,77,85],{"type":47,"tag":62,"props":63,"children":64},"strong",{},[65],{"type":52,"value":66},"Free locally; cloud builds are paid.",{"type":52,"value":68}," ",{"type":47,"tag":70,"props":71,"children":73},"code",{"className":72},[],[74],{"type":52,"value":4},{"type":52,"value":76}," itself is open source and building locally is free. Building or distributing via EAS Build\u002FTestFlight uses your EAS plan's build minutes and needs a paid Apple Developer account for device\u002FTestFlight distribution. See ",{"type":47,"tag":78,"props":79,"children":83},"a",{"href":80,"rel":81},"https:\u002F\u002Fexpo.dev\u002Fpricing",[82],"nofollow",[84],{"type":52,"value":80},{"type":52,"value":86},".",{"type":47,"tag":88,"props":89,"children":91},"h2",{"id":90},"important-when-development-clients-are-needed",[92],{"type":52,"value":93},"Important: When Development Clients Are Needed",{"type":47,"tag":48,"props":95,"children":96},{},[97,102,104,111],{"type":47,"tag":62,"props":98,"children":99},{},[100],{"type":52,"value":101},"Development clients are the recommended setup for any real or production app.",{"type":52,"value":103}," Expo Go is a playground for learning and quick experiments with the native libraries it bundles; most apps outgrow it and move to a development client. See ",{"type":47,"tag":78,"props":105,"children":108},{"href":106,"rel":107},"https:\u002F\u002Fdocs.expo.dev\u002Fdevelop\u002Fdevelopment-builds\u002Fintroduction\u002F",[82],[109],{"type":52,"value":110},"Expo Go vs. development builds",{"type":52,"value":112}," for the full reasoning.",{"type":47,"tag":48,"props":114,"children":115},{},[116],{"type":52,"value":117},"You need a dev client ONLY when using:",{"type":47,"tag":119,"props":120,"children":121},"ul",{},[122,128,133,138],{"type":47,"tag":123,"props":124,"children":125},"li",{},[126],{"type":52,"value":127},"Local Expo modules (custom native code)",{"type":47,"tag":123,"props":129,"children":130},{},[131],{"type":52,"value":132},"Apple targets (widgets, app clips, extensions)",{"type":47,"tag":123,"props":134,"children":135},{},[136],{"type":52,"value":137},"Third-party native modules not in Expo Go",{"type":47,"tag":123,"props":139,"children":140},{},[141],{"type":52,"value":142},"Config plugins, or testing remote push notifications and App\u002FUniversal Links",{"type":47,"tag":88,"props":144,"children":146},{"id":145},"eas-configuration",[147],{"type":52,"value":148},"EAS Configuration",{"type":47,"tag":48,"props":150,"children":151},{},[152,154,160],{"type":52,"value":153},"Ensure ",{"type":47,"tag":70,"props":155,"children":157},{"className":156},[],[158],{"type":52,"value":159},"eas.json",{"type":52,"value":161}," has a development profile:",{"type":47,"tag":163,"props":164,"children":169},"pre",{"className":165,"code":166,"language":167,"meta":168,"style":168},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\n  \"cli\": {\n    \"version\": \">= 16.0.1\",\n    \"appVersionSource\": \"remote\"\n  },\n  \"build\": {\n    \"production\": {\n      \"autoIncrement\": true\n    },\n    \"development\": {\n      \"autoIncrement\": true,\n      \"developmentClient\": true\n    }\n  },\n  \"submit\": {\n    \"production\": {},\n    \"development\": {}\n  }\n}\n","json","",[170],{"type":47,"tag":70,"props":171,"children":172},{"__ignoreMap":168},[173,185,215,258,293,302,327,352,380,389,414,439,464,473,481,506,531,556,565],{"type":47,"tag":174,"props":175,"children":178},"span",{"class":176,"line":177},"line",1,[179],{"type":47,"tag":174,"props":180,"children":182},{"style":181},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[183],{"type":52,"value":184},"{\n",{"type":47,"tag":174,"props":186,"children":188},{"class":176,"line":187},2,[189,194,200,205,210],{"type":47,"tag":174,"props":190,"children":191},{"style":181},[192],{"type":52,"value":193},"  \"",{"type":47,"tag":174,"props":195,"children":197},{"style":196},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[198],{"type":52,"value":199},"cli",{"type":47,"tag":174,"props":201,"children":202},{"style":181},[203],{"type":52,"value":204},"\"",{"type":47,"tag":174,"props":206,"children":207},{"style":181},[208],{"type":52,"value":209},":",{"type":47,"tag":174,"props":211,"children":212},{"style":181},[213],{"type":52,"value":214}," {\n",{"type":47,"tag":174,"props":216,"children":218},{"class":176,"line":217},3,[219,224,230,234,238,243,249,253],{"type":47,"tag":174,"props":220,"children":221},{"style":181},[222],{"type":52,"value":223},"    \"",{"type":47,"tag":174,"props":225,"children":227},{"style":226},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[228],{"type":52,"value":229},"version",{"type":47,"tag":174,"props":231,"children":232},{"style":181},[233],{"type":52,"value":204},{"type":47,"tag":174,"props":235,"children":236},{"style":181},[237],{"type":52,"value":209},{"type":47,"tag":174,"props":239,"children":240},{"style":181},[241],{"type":52,"value":242}," \"",{"type":47,"tag":174,"props":244,"children":246},{"style":245},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[247],{"type":52,"value":248},">= 16.0.1",{"type":47,"tag":174,"props":250,"children":251},{"style":181},[252],{"type":52,"value":204},{"type":47,"tag":174,"props":254,"children":255},{"style":181},[256],{"type":52,"value":257},",\n",{"type":47,"tag":174,"props":259,"children":261},{"class":176,"line":260},4,[262,266,271,275,279,283,288],{"type":47,"tag":174,"props":263,"children":264},{"style":181},[265],{"type":52,"value":223},{"type":47,"tag":174,"props":267,"children":268},{"style":226},[269],{"type":52,"value":270},"appVersionSource",{"type":47,"tag":174,"props":272,"children":273},{"style":181},[274],{"type":52,"value":204},{"type":47,"tag":174,"props":276,"children":277},{"style":181},[278],{"type":52,"value":209},{"type":47,"tag":174,"props":280,"children":281},{"style":181},[282],{"type":52,"value":242},{"type":47,"tag":174,"props":284,"children":285},{"style":245},[286],{"type":52,"value":287},"remote",{"type":47,"tag":174,"props":289,"children":290},{"style":181},[291],{"type":52,"value":292},"\"\n",{"type":47,"tag":174,"props":294,"children":296},{"class":176,"line":295},5,[297],{"type":47,"tag":174,"props":298,"children":299},{"style":181},[300],{"type":52,"value":301},"  },\n",{"type":47,"tag":174,"props":303,"children":305},{"class":176,"line":304},6,[306,310,315,319,323],{"type":47,"tag":174,"props":307,"children":308},{"style":181},[309],{"type":52,"value":193},{"type":47,"tag":174,"props":311,"children":312},{"style":196},[313],{"type":52,"value":314},"build",{"type":47,"tag":174,"props":316,"children":317},{"style":181},[318],{"type":52,"value":204},{"type":47,"tag":174,"props":320,"children":321},{"style":181},[322],{"type":52,"value":209},{"type":47,"tag":174,"props":324,"children":325},{"style":181},[326],{"type":52,"value":214},{"type":47,"tag":174,"props":328,"children":330},{"class":176,"line":329},7,[331,335,340,344,348],{"type":47,"tag":174,"props":332,"children":333},{"style":181},[334],{"type":52,"value":223},{"type":47,"tag":174,"props":336,"children":337},{"style":226},[338],{"type":52,"value":339},"production",{"type":47,"tag":174,"props":341,"children":342},{"style":181},[343],{"type":52,"value":204},{"type":47,"tag":174,"props":345,"children":346},{"style":181},[347],{"type":52,"value":209},{"type":47,"tag":174,"props":349,"children":350},{"style":181},[351],{"type":52,"value":214},{"type":47,"tag":174,"props":353,"children":355},{"class":176,"line":354},8,[356,361,367,371,375],{"type":47,"tag":174,"props":357,"children":358},{"style":181},[359],{"type":52,"value":360},"      \"",{"type":47,"tag":174,"props":362,"children":364},{"style":363},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[365],{"type":52,"value":366},"autoIncrement",{"type":47,"tag":174,"props":368,"children":369},{"style":181},[370],{"type":52,"value":204},{"type":47,"tag":174,"props":372,"children":373},{"style":181},[374],{"type":52,"value":209},{"type":47,"tag":174,"props":376,"children":377},{"style":181},[378],{"type":52,"value":379}," true\n",{"type":47,"tag":174,"props":381,"children":383},{"class":176,"line":382},9,[384],{"type":47,"tag":174,"props":385,"children":386},{"style":181},[387],{"type":52,"value":388},"    },\n",{"type":47,"tag":174,"props":390,"children":392},{"class":176,"line":391},10,[393,397,402,406,410],{"type":47,"tag":174,"props":394,"children":395},{"style":181},[396],{"type":52,"value":223},{"type":47,"tag":174,"props":398,"children":399},{"style":226},[400],{"type":52,"value":401},"development",{"type":47,"tag":174,"props":403,"children":404},{"style":181},[405],{"type":52,"value":204},{"type":47,"tag":174,"props":407,"children":408},{"style":181},[409],{"type":52,"value":209},{"type":47,"tag":174,"props":411,"children":412},{"style":181},[413],{"type":52,"value":214},{"type":47,"tag":174,"props":415,"children":417},{"class":176,"line":416},11,[418,422,426,430,434],{"type":47,"tag":174,"props":419,"children":420},{"style":181},[421],{"type":52,"value":360},{"type":47,"tag":174,"props":423,"children":424},{"style":363},[425],{"type":52,"value":366},{"type":47,"tag":174,"props":427,"children":428},{"style":181},[429],{"type":52,"value":204},{"type":47,"tag":174,"props":431,"children":432},{"style":181},[433],{"type":52,"value":209},{"type":47,"tag":174,"props":435,"children":436},{"style":181},[437],{"type":52,"value":438}," true,\n",{"type":47,"tag":174,"props":440,"children":442},{"class":176,"line":441},12,[443,447,452,456,460],{"type":47,"tag":174,"props":444,"children":445},{"style":181},[446],{"type":52,"value":360},{"type":47,"tag":174,"props":448,"children":449},{"style":363},[450],{"type":52,"value":451},"developmentClient",{"type":47,"tag":174,"props":453,"children":454},{"style":181},[455],{"type":52,"value":204},{"type":47,"tag":174,"props":457,"children":458},{"style":181},[459],{"type":52,"value":209},{"type":47,"tag":174,"props":461,"children":462},{"style":181},[463],{"type":52,"value":379},{"type":47,"tag":174,"props":465,"children":467},{"class":176,"line":466},13,[468],{"type":47,"tag":174,"props":469,"children":470},{"style":181},[471],{"type":52,"value":472},"    }\n",{"type":47,"tag":174,"props":474,"children":476},{"class":176,"line":475},14,[477],{"type":47,"tag":174,"props":478,"children":479},{"style":181},[480],{"type":52,"value":301},{"type":47,"tag":174,"props":482,"children":484},{"class":176,"line":483},15,[485,489,494,498,502],{"type":47,"tag":174,"props":486,"children":487},{"style":181},[488],{"type":52,"value":193},{"type":47,"tag":174,"props":490,"children":491},{"style":196},[492],{"type":52,"value":493},"submit",{"type":47,"tag":174,"props":495,"children":496},{"style":181},[497],{"type":52,"value":204},{"type":47,"tag":174,"props":499,"children":500},{"style":181},[501],{"type":52,"value":209},{"type":47,"tag":174,"props":503,"children":504},{"style":181},[505],{"type":52,"value":214},{"type":47,"tag":174,"props":507,"children":509},{"class":176,"line":508},16,[510,514,518,522,526],{"type":47,"tag":174,"props":511,"children":512},{"style":181},[513],{"type":52,"value":223},{"type":47,"tag":174,"props":515,"children":516},{"style":226},[517],{"type":52,"value":339},{"type":47,"tag":174,"props":519,"children":520},{"style":181},[521],{"type":52,"value":204},{"type":47,"tag":174,"props":523,"children":524},{"style":181},[525],{"type":52,"value":209},{"type":47,"tag":174,"props":527,"children":528},{"style":181},[529],{"type":52,"value":530}," {},\n",{"type":47,"tag":174,"props":532,"children":534},{"class":176,"line":533},17,[535,539,543,547,551],{"type":47,"tag":174,"props":536,"children":537},{"style":181},[538],{"type":52,"value":223},{"type":47,"tag":174,"props":540,"children":541},{"style":226},[542],{"type":52,"value":401},{"type":47,"tag":174,"props":544,"children":545},{"style":181},[546],{"type":52,"value":204},{"type":47,"tag":174,"props":548,"children":549},{"style":181},[550],{"type":52,"value":209},{"type":47,"tag":174,"props":552,"children":553},{"style":181},[554],{"type":52,"value":555}," {}\n",{"type":47,"tag":174,"props":557,"children":559},{"class":176,"line":558},18,[560],{"type":47,"tag":174,"props":561,"children":562},{"style":181},[563],{"type":52,"value":564},"  }\n",{"type":47,"tag":174,"props":566,"children":568},{"class":176,"line":567},19,[569],{"type":47,"tag":174,"props":570,"children":571},{"style":181},[572],{"type":52,"value":573},"}\n",{"type":47,"tag":48,"props":575,"children":576},{},[577],{"type":52,"value":578},"Key settings:",{"type":47,"tag":119,"props":580,"children":581},{},[582,593,604],{"type":47,"tag":123,"props":583,"children":584},{},[585,591],{"type":47,"tag":70,"props":586,"children":588},{"className":587},[],[589],{"type":52,"value":590},"developmentClient: true",{"type":52,"value":592}," - Bundles expo-dev-client for development builds",{"type":47,"tag":123,"props":594,"children":595},{},[596,602],{"type":47,"tag":70,"props":597,"children":599},{"className":598},[],[600],{"type":52,"value":601},"autoIncrement: true",{"type":52,"value":603}," - Automatically increments build numbers",{"type":47,"tag":123,"props":605,"children":606},{},[607,613],{"type":47,"tag":70,"props":608,"children":610},{"className":609},[],[611],{"type":52,"value":612},"appVersionSource: \"remote\"",{"type":52,"value":614}," - Uses EAS as the source of truth for version numbers",{"type":47,"tag":88,"props":616,"children":618},{"id":617},"building-for-testflight",[619],{"type":52,"value":620},"Building for TestFlight",{"type":47,"tag":48,"props":622,"children":623},{},[624],{"type":52,"value":625},"Build iOS dev client and submit to TestFlight in one command:",{"type":47,"tag":163,"props":627,"children":631},{"className":628,"code":629,"language":630,"meta":168,"style":168},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","eas build -p ios --profile development --submit\n","bash",[632],{"type":47,"tag":70,"props":633,"children":634},{"__ignoreMap":168},[635],{"type":47,"tag":174,"props":636,"children":637},{"class":176,"line":177},[638,643,648,653,658,663,668],{"type":47,"tag":174,"props":639,"children":640},{"style":226},[641],{"type":52,"value":642},"eas",{"type":47,"tag":174,"props":644,"children":645},{"style":245},[646],{"type":52,"value":647}," build",{"type":47,"tag":174,"props":649,"children":650},{"style":245},[651],{"type":52,"value":652}," -p",{"type":47,"tag":174,"props":654,"children":655},{"style":245},[656],{"type":52,"value":657}," ios",{"type":47,"tag":174,"props":659,"children":660},{"style":245},[661],{"type":52,"value":662}," --profile",{"type":47,"tag":174,"props":664,"children":665},{"style":245},[666],{"type":52,"value":667}," development",{"type":47,"tag":174,"props":669,"children":670},{"style":245},[671],{"type":52,"value":672}," --submit\n",{"type":47,"tag":48,"props":674,"children":675},{},[676],{"type":52,"value":677},"This will:",{"type":47,"tag":679,"props":680,"children":681},"ol",{},[682,687,692],{"type":47,"tag":123,"props":683,"children":684},{},[685],{"type":52,"value":686},"Build the development client in the cloud",{"type":47,"tag":123,"props":688,"children":689},{},[690],{"type":52,"value":691},"Automatically submit to App Store Connect",{"type":47,"tag":123,"props":693,"children":694},{},[695],{"type":52,"value":696},"Send you an email when the build is ready in TestFlight",{"type":47,"tag":48,"props":698,"children":699},{},[700],{"type":52,"value":701},"After receiving the TestFlight email:",{"type":47,"tag":679,"props":703,"children":704},{},[705,710,715],{"type":47,"tag":123,"props":706,"children":707},{},[708],{"type":52,"value":709},"Download the build from TestFlight on your device",{"type":47,"tag":123,"props":711,"children":712},{},[713],{"type":52,"value":714},"Launch the app to see the expo-dev-client UI",{"type":47,"tag":123,"props":716,"children":717},{},[718],{"type":52,"value":719},"Connect to your local Metro bundler or scan a QR code",{"type":47,"tag":88,"props":721,"children":723},{"id":722},"building-locally",[724],{"type":52,"value":725},"Building Locally",{"type":47,"tag":48,"props":727,"children":728},{},[729],{"type":52,"value":730},"Build a development client on your machine:",{"type":47,"tag":163,"props":732,"children":734},{"className":628,"code":733,"language":630,"meta":168,"style":168},"# iOS (requires Xcode)\neas build -p ios --profile development --local\n\n# Android\neas build -p android --profile development --local\n",[735],{"type":47,"tag":70,"props":736,"children":737},{"__ignoreMap":168},[738,747,779,788,796],{"type":47,"tag":174,"props":739,"children":740},{"class":176,"line":177},[741],{"type":47,"tag":174,"props":742,"children":744},{"style":743},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[745],{"type":52,"value":746},"# iOS (requires Xcode)\n",{"type":47,"tag":174,"props":748,"children":749},{"class":176,"line":187},[750,754,758,762,766,770,774],{"type":47,"tag":174,"props":751,"children":752},{"style":226},[753],{"type":52,"value":642},{"type":47,"tag":174,"props":755,"children":756},{"style":245},[757],{"type":52,"value":647},{"type":47,"tag":174,"props":759,"children":760},{"style":245},[761],{"type":52,"value":652},{"type":47,"tag":174,"props":763,"children":764},{"style":245},[765],{"type":52,"value":657},{"type":47,"tag":174,"props":767,"children":768},{"style":245},[769],{"type":52,"value":662},{"type":47,"tag":174,"props":771,"children":772},{"style":245},[773],{"type":52,"value":667},{"type":47,"tag":174,"props":775,"children":776},{"style":245},[777],{"type":52,"value":778}," --local\n",{"type":47,"tag":174,"props":780,"children":781},{"class":176,"line":217},[782],{"type":47,"tag":174,"props":783,"children":785},{"emptyLinePlaceholder":784},true,[786],{"type":52,"value":787},"\n",{"type":47,"tag":174,"props":789,"children":790},{"class":176,"line":260},[791],{"type":47,"tag":174,"props":792,"children":793},{"style":743},[794],{"type":52,"value":795},"# Android\n",{"type":47,"tag":174,"props":797,"children":798},{"class":176,"line":295},[799,803,807,811,816,820,824],{"type":47,"tag":174,"props":800,"children":801},{"style":226},[802],{"type":52,"value":642},{"type":47,"tag":174,"props":804,"children":805},{"style":245},[806],{"type":52,"value":647},{"type":47,"tag":174,"props":808,"children":809},{"style":245},[810],{"type":52,"value":652},{"type":47,"tag":174,"props":812,"children":813},{"style":245},[814],{"type":52,"value":815}," android",{"type":47,"tag":174,"props":817,"children":818},{"style":245},[819],{"type":52,"value":662},{"type":47,"tag":174,"props":821,"children":822},{"style":245},[823],{"type":52,"value":667},{"type":47,"tag":174,"props":825,"children":826},{"style":245},[827],{"type":52,"value":778},{"type":47,"tag":48,"props":829,"children":830},{},[831],{"type":52,"value":832},"Local builds output:",{"type":47,"tag":119,"props":834,"children":835},{},[836,849],{"type":47,"tag":123,"props":837,"children":838},{},[839,841,847],{"type":52,"value":840},"iOS: ",{"type":47,"tag":70,"props":842,"children":844},{"className":843},[],[845],{"type":52,"value":846},".ipa",{"type":52,"value":848}," file",{"type":47,"tag":123,"props":850,"children":851},{},[852,854,860,862,868],{"type":52,"value":853},"Android: ",{"type":47,"tag":70,"props":855,"children":857},{"className":856},[],[858],{"type":52,"value":859},".apk",{"type":52,"value":861}," or ",{"type":47,"tag":70,"props":863,"children":865},{"className":864},[],[866],{"type":52,"value":867},".aab",{"type":52,"value":848},{"type":47,"tag":88,"props":870,"children":872},{"id":871},"installing-local-builds",[873],{"type":52,"value":874},"Installing Local Builds",{"type":47,"tag":48,"props":876,"children":877},{},[878],{"type":52,"value":879},"Install iOS build on simulator:",{"type":47,"tag":163,"props":881,"children":883},{"className":628,"code":882,"language":630,"meta":168,"style":168},"# Find the .app in the .tar.gz output\ntar -xzf build-*.tar.gz\nxcrun simctl install booted .\u002Fpath\u002Fto\u002FApp.app\n",[884],{"type":47,"tag":70,"props":885,"children":886},{"__ignoreMap":168},[887,895,924],{"type":47,"tag":174,"props":888,"children":889},{"class":176,"line":177},[890],{"type":47,"tag":174,"props":891,"children":892},{"style":743},[893],{"type":52,"value":894},"# Find the .app in the .tar.gz output\n",{"type":47,"tag":174,"props":896,"children":897},{"class":176,"line":187},[898,903,908,913,919],{"type":47,"tag":174,"props":899,"children":900},{"style":226},[901],{"type":52,"value":902},"tar",{"type":47,"tag":174,"props":904,"children":905},{"style":245},[906],{"type":52,"value":907}," -xzf",{"type":47,"tag":174,"props":909,"children":910},{"style":245},[911],{"type":52,"value":912}," build-",{"type":47,"tag":174,"props":914,"children":916},{"style":915},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[917],{"type":52,"value":918},"*",{"type":47,"tag":174,"props":920,"children":921},{"style":245},[922],{"type":52,"value":923},".tar.gz\n",{"type":47,"tag":174,"props":925,"children":926},{"class":176,"line":217},[927,932,937,942,947],{"type":47,"tag":174,"props":928,"children":929},{"style":226},[930],{"type":52,"value":931},"xcrun",{"type":47,"tag":174,"props":933,"children":934},{"style":245},[935],{"type":52,"value":936}," simctl",{"type":47,"tag":174,"props":938,"children":939},{"style":245},[940],{"type":52,"value":941}," install",{"type":47,"tag":174,"props":943,"children":944},{"style":245},[945],{"type":52,"value":946}," booted",{"type":47,"tag":174,"props":948,"children":949},{"style":245},[950],{"type":52,"value":951}," .\u002Fpath\u002Fto\u002FApp.app\n",{"type":47,"tag":48,"props":953,"children":954},{},[955],{"type":52,"value":956},"Install iOS build on device (requires signing):",{"type":47,"tag":163,"props":958,"children":960},{"className":628,"code":959,"language":630,"meta":168,"style":168},"# Use Xcode Devices window or ideviceinstaller\nideviceinstaller -i build.ipa\n",[961],{"type":47,"tag":70,"props":962,"children":963},{"__ignoreMap":168},[964,972],{"type":47,"tag":174,"props":965,"children":966},{"class":176,"line":177},[967],{"type":47,"tag":174,"props":968,"children":969},{"style":743},[970],{"type":52,"value":971},"# Use Xcode Devices window or ideviceinstaller\n",{"type":47,"tag":174,"props":973,"children":974},{"class":176,"line":187},[975,980,985],{"type":47,"tag":174,"props":976,"children":977},{"style":226},[978],{"type":52,"value":979},"ideviceinstaller",{"type":47,"tag":174,"props":981,"children":982},{"style":245},[983],{"type":52,"value":984}," -i",{"type":47,"tag":174,"props":986,"children":987},{"style":245},[988],{"type":52,"value":989}," build.ipa\n",{"type":47,"tag":48,"props":991,"children":992},{},[993],{"type":52,"value":994},"Install Android build:",{"type":47,"tag":163,"props":996,"children":998},{"className":628,"code":997,"language":630,"meta":168,"style":168},"adb install build.apk\n",[999],{"type":47,"tag":70,"props":1000,"children":1001},{"__ignoreMap":168},[1002],{"type":47,"tag":174,"props":1003,"children":1004},{"class":176,"line":177},[1005,1010,1014],{"type":47,"tag":174,"props":1006,"children":1007},{"style":226},[1008],{"type":52,"value":1009},"adb",{"type":47,"tag":174,"props":1011,"children":1012},{"style":245},[1013],{"type":52,"value":941},{"type":47,"tag":174,"props":1015,"children":1016},{"style":245},[1017],{"type":52,"value":1018}," build.apk\n",{"type":47,"tag":88,"props":1020,"children":1022},{"id":1021},"building-for-specific-platform",[1023],{"type":52,"value":1024},"Building for Specific Platform",{"type":47,"tag":163,"props":1026,"children":1028},{"className":628,"code":1027,"language":630,"meta":168,"style":168},"# iOS only\neas build -p ios --profile development\n\n# Android only\neas build -p android --profile development\n\n# Both platforms\neas build --profile development\n",[1029],{"type":47,"tag":70,"props":1030,"children":1031},{"__ignoreMap":168},[1032,1040,1068,1075,1083,1110,1117,1125],{"type":47,"tag":174,"props":1033,"children":1034},{"class":176,"line":177},[1035],{"type":47,"tag":174,"props":1036,"children":1037},{"style":743},[1038],{"type":52,"value":1039},"# iOS only\n",{"type":47,"tag":174,"props":1041,"children":1042},{"class":176,"line":187},[1043,1047,1051,1055,1059,1063],{"type":47,"tag":174,"props":1044,"children":1045},{"style":226},[1046],{"type":52,"value":642},{"type":47,"tag":174,"props":1048,"children":1049},{"style":245},[1050],{"type":52,"value":647},{"type":47,"tag":174,"props":1052,"children":1053},{"style":245},[1054],{"type":52,"value":652},{"type":47,"tag":174,"props":1056,"children":1057},{"style":245},[1058],{"type":52,"value":657},{"type":47,"tag":174,"props":1060,"children":1061},{"style":245},[1062],{"type":52,"value":662},{"type":47,"tag":174,"props":1064,"children":1065},{"style":245},[1066],{"type":52,"value":1067}," development\n",{"type":47,"tag":174,"props":1069,"children":1070},{"class":176,"line":217},[1071],{"type":47,"tag":174,"props":1072,"children":1073},{"emptyLinePlaceholder":784},[1074],{"type":52,"value":787},{"type":47,"tag":174,"props":1076,"children":1077},{"class":176,"line":260},[1078],{"type":47,"tag":174,"props":1079,"children":1080},{"style":743},[1081],{"type":52,"value":1082},"# Android only\n",{"type":47,"tag":174,"props":1084,"children":1085},{"class":176,"line":295},[1086,1090,1094,1098,1102,1106],{"type":47,"tag":174,"props":1087,"children":1088},{"style":226},[1089],{"type":52,"value":642},{"type":47,"tag":174,"props":1091,"children":1092},{"style":245},[1093],{"type":52,"value":647},{"type":47,"tag":174,"props":1095,"children":1096},{"style":245},[1097],{"type":52,"value":652},{"type":47,"tag":174,"props":1099,"children":1100},{"style":245},[1101],{"type":52,"value":815},{"type":47,"tag":174,"props":1103,"children":1104},{"style":245},[1105],{"type":52,"value":662},{"type":47,"tag":174,"props":1107,"children":1108},{"style":245},[1109],{"type":52,"value":1067},{"type":47,"tag":174,"props":1111,"children":1112},{"class":176,"line":304},[1113],{"type":47,"tag":174,"props":1114,"children":1115},{"emptyLinePlaceholder":784},[1116],{"type":52,"value":787},{"type":47,"tag":174,"props":1118,"children":1119},{"class":176,"line":329},[1120],{"type":47,"tag":174,"props":1121,"children":1122},{"style":743},[1123],{"type":52,"value":1124},"# Both platforms\n",{"type":47,"tag":174,"props":1126,"children":1127},{"class":176,"line":354},[1128,1132,1136,1140],{"type":47,"tag":174,"props":1129,"children":1130},{"style":226},[1131],{"type":52,"value":642},{"type":47,"tag":174,"props":1133,"children":1134},{"style":245},[1135],{"type":52,"value":647},{"type":47,"tag":174,"props":1137,"children":1138},{"style":245},[1139],{"type":52,"value":662},{"type":47,"tag":174,"props":1141,"children":1142},{"style":245},[1143],{"type":52,"value":1067},{"type":47,"tag":88,"props":1145,"children":1147},{"id":1146},"checking-build-status",[1148],{"type":52,"value":1149},"Checking Build Status",{"type":47,"tag":163,"props":1151,"children":1153},{"className":628,"code":1152,"language":630,"meta":168,"style":168},"# List recent builds\neas build:list\n\n# View build details\neas build:view\n",[1154],{"type":47,"tag":70,"props":1155,"children":1156},{"__ignoreMap":168},[1157,1165,1177,1184,1192],{"type":47,"tag":174,"props":1158,"children":1159},{"class":176,"line":177},[1160],{"type":47,"tag":174,"props":1161,"children":1162},{"style":743},[1163],{"type":52,"value":1164},"# List recent builds\n",{"type":47,"tag":174,"props":1166,"children":1167},{"class":176,"line":187},[1168,1172],{"type":47,"tag":174,"props":1169,"children":1170},{"style":226},[1171],{"type":52,"value":642},{"type":47,"tag":174,"props":1173,"children":1174},{"style":245},[1175],{"type":52,"value":1176}," build:list\n",{"type":47,"tag":174,"props":1178,"children":1179},{"class":176,"line":217},[1180],{"type":47,"tag":174,"props":1181,"children":1182},{"emptyLinePlaceholder":784},[1183],{"type":52,"value":787},{"type":47,"tag":174,"props":1185,"children":1186},{"class":176,"line":260},[1187],{"type":47,"tag":174,"props":1188,"children":1189},{"style":743},[1190],{"type":52,"value":1191},"# View build details\n",{"type":47,"tag":174,"props":1193,"children":1194},{"class":176,"line":295},[1195,1199],{"type":47,"tag":174,"props":1196,"children":1197},{"style":226},[1198],{"type":52,"value":642},{"type":47,"tag":174,"props":1200,"children":1201},{"style":245},[1202],{"type":52,"value":1203}," build:view\n",{"type":47,"tag":88,"props":1205,"children":1207},{"id":1206},"using-the-dev-client",[1208],{"type":52,"value":1209},"Using the Dev Client",{"type":47,"tag":48,"props":1211,"children":1212},{},[1213],{"type":52,"value":1214},"Once installed, the dev client provides:",{"type":47,"tag":119,"props":1216,"children":1217},{},[1218,1228,1238],{"type":47,"tag":123,"props":1219,"children":1220},{},[1221,1226],{"type":47,"tag":62,"props":1222,"children":1223},{},[1224],{"type":52,"value":1225},"Development server connection",{"type":52,"value":1227}," - Enter your Metro bundler URL or scan QR",{"type":47,"tag":123,"props":1229,"children":1230},{},[1231,1236],{"type":47,"tag":62,"props":1232,"children":1233},{},[1234],{"type":52,"value":1235},"Build information",{"type":52,"value":1237}," - View native build details",{"type":47,"tag":123,"props":1239,"children":1240},{},[1241,1246],{"type":47,"tag":62,"props":1242,"children":1243},{},[1244],{"type":52,"value":1245},"Launcher UI",{"type":52,"value":1247}," - Switch between development servers",{"type":47,"tag":48,"props":1249,"children":1250},{},[1251],{"type":52,"value":1252},"Connect to local development:",{"type":47,"tag":163,"props":1254,"children":1256},{"className":628,"code":1255,"language":630,"meta":168,"style":168},"# Start Metro bundler\nnpx expo start --dev-client\n\n# Scan QR code with dev client or enter URL manually\n",[1257],{"type":47,"tag":70,"props":1258,"children":1259},{"__ignoreMap":168},[1260,1268,1291,1298],{"type":47,"tag":174,"props":1261,"children":1262},{"class":176,"line":177},[1263],{"type":47,"tag":174,"props":1264,"children":1265},{"style":743},[1266],{"type":52,"value":1267},"# Start Metro bundler\n",{"type":47,"tag":174,"props":1269,"children":1270},{"class":176,"line":187},[1271,1276,1281,1286],{"type":47,"tag":174,"props":1272,"children":1273},{"style":226},[1274],{"type":52,"value":1275},"npx",{"type":47,"tag":174,"props":1277,"children":1278},{"style":245},[1279],{"type":52,"value":1280}," expo",{"type":47,"tag":174,"props":1282,"children":1283},{"style":245},[1284],{"type":52,"value":1285}," start",{"type":47,"tag":174,"props":1287,"children":1288},{"style":245},[1289],{"type":52,"value":1290}," --dev-client\n",{"type":47,"tag":174,"props":1292,"children":1293},{"class":176,"line":217},[1294],{"type":47,"tag":174,"props":1295,"children":1296},{"emptyLinePlaceholder":784},[1297],{"type":52,"value":787},{"type":47,"tag":174,"props":1299,"children":1300},{"class":176,"line":260},[1301],{"type":47,"tag":174,"props":1302,"children":1303},{"style":743},[1304],{"type":52,"value":1305},"# Scan QR code with dev client or enter URL manually\n",{"type":47,"tag":88,"props":1307,"children":1309},{"id":1308},"troubleshooting",[1310],{"type":52,"value":1311},"Troubleshooting",{"type":47,"tag":48,"props":1313,"children":1314},{},[1315],{"type":47,"tag":62,"props":1316,"children":1317},{},[1318],{"type":52,"value":1319},"Build fails with signing errors:",{"type":47,"tag":163,"props":1321,"children":1323},{"className":628,"code":1322,"language":630,"meta":168,"style":168},"eas credentials\n",[1324],{"type":47,"tag":70,"props":1325,"children":1326},{"__ignoreMap":168},[1327],{"type":47,"tag":174,"props":1328,"children":1329},{"class":176,"line":177},[1330,1334],{"type":47,"tag":174,"props":1331,"children":1332},{"style":226},[1333],{"type":52,"value":642},{"type":47,"tag":174,"props":1335,"children":1336},{"style":245},[1337],{"type":52,"value":1338}," credentials\n",{"type":47,"tag":48,"props":1340,"children":1341},{},[1342],{"type":47,"tag":62,"props":1343,"children":1344},{},[1345],{"type":52,"value":1346},"Clear build cache:",{"type":47,"tag":163,"props":1348,"children":1350},{"className":628,"code":1349,"language":630,"meta":168,"style":168},"eas build -p ios --profile development --clear-cache\n",[1351],{"type":47,"tag":70,"props":1352,"children":1353},{"__ignoreMap":168},[1354],{"type":47,"tag":174,"props":1355,"children":1356},{"class":176,"line":177},[1357,1361,1365,1369,1373,1377,1381],{"type":47,"tag":174,"props":1358,"children":1359},{"style":226},[1360],{"type":52,"value":642},{"type":47,"tag":174,"props":1362,"children":1363},{"style":245},[1364],{"type":52,"value":647},{"type":47,"tag":174,"props":1366,"children":1367},{"style":245},[1368],{"type":52,"value":652},{"type":47,"tag":174,"props":1370,"children":1371},{"style":245},[1372],{"type":52,"value":657},{"type":47,"tag":174,"props":1374,"children":1375},{"style":245},[1376],{"type":52,"value":662},{"type":47,"tag":174,"props":1378,"children":1379},{"style":245},[1380],{"type":52,"value":667},{"type":47,"tag":174,"props":1382,"children":1383},{"style":245},[1384],{"type":52,"value":1385}," --clear-cache\n",{"type":47,"tag":48,"props":1387,"children":1388},{},[1389],{"type":47,"tag":62,"props":1390,"children":1391},{},[1392],{"type":52,"value":1393},"Check EAS CLI version:",{"type":47,"tag":163,"props":1395,"children":1397},{"className":628,"code":1396,"language":630,"meta":168,"style":168},"eas --version\neas update\n",[1398],{"type":47,"tag":70,"props":1399,"children":1400},{"__ignoreMap":168},[1401,1413],{"type":47,"tag":174,"props":1402,"children":1403},{"class":176,"line":177},[1404,1408],{"type":47,"tag":174,"props":1405,"children":1406},{"style":226},[1407],{"type":52,"value":642},{"type":47,"tag":174,"props":1409,"children":1410},{"style":245},[1411],{"type":52,"value":1412}," --version\n",{"type":47,"tag":174,"props":1414,"children":1415},{"class":176,"line":187},[1416,1420],{"type":47,"tag":174,"props":1417,"children":1418},{"style":226},[1419],{"type":52,"value":642},{"type":47,"tag":174,"props":1421,"children":1422},{"style":245},[1423],{"type":52,"value":1424}," update\n",{"type":47,"tag":88,"props":1426,"children":1428},{"id":1427},"submitting-feedback",[1429],{"type":52,"value":1430},"Submitting Feedback",{"type":47,"tag":48,"props":1432,"children":1433},{},[1434],{"type":52,"value":1435},"If you encounter errors, misleading or outdated information in this skill, report it so Expo can improve:",{"type":47,"tag":163,"props":1437,"children":1439},{"className":628,"code":1438,"language":630,"meta":168,"style":168},"npx --yes submit-expo-feedback@latest --category skills --subject \"expo-dev-client\" \"\u003Cactionable feedback>\"\n",[1440],{"type":47,"tag":70,"props":1441,"children":1442},{"__ignoreMap":168},[1443],{"type":47,"tag":174,"props":1444,"children":1445},{"class":176,"line":177},[1446,1450,1455,1460,1465,1470,1475,1479,1483,1487,1491,1496],{"type":47,"tag":174,"props":1447,"children":1448},{"style":226},[1449],{"type":52,"value":1275},{"type":47,"tag":174,"props":1451,"children":1452},{"style":245},[1453],{"type":52,"value":1454}," --yes",{"type":47,"tag":174,"props":1456,"children":1457},{"style":245},[1458],{"type":52,"value":1459}," submit-expo-feedback@latest",{"type":47,"tag":174,"props":1461,"children":1462},{"style":245},[1463],{"type":52,"value":1464}," --category",{"type":47,"tag":174,"props":1466,"children":1467},{"style":245},[1468],{"type":52,"value":1469}," skills",{"type":47,"tag":174,"props":1471,"children":1472},{"style":245},[1473],{"type":52,"value":1474}," --subject",{"type":47,"tag":174,"props":1476,"children":1477},{"style":181},[1478],{"type":52,"value":242},{"type":47,"tag":174,"props":1480,"children":1481},{"style":245},[1482],{"type":52,"value":4},{"type":47,"tag":174,"props":1484,"children":1485},{"style":181},[1486],{"type":52,"value":204},{"type":47,"tag":174,"props":1488,"children":1489},{"style":181},[1490],{"type":52,"value":242},{"type":47,"tag":174,"props":1492,"children":1493},{"style":245},[1494],{"type":52,"value":1495},"\u003Cactionable feedback>",{"type":47,"tag":174,"props":1497,"children":1498},{"style":181},[1499],{"type":52,"value":292},{"type":47,"tag":48,"props":1501,"children":1502},{},[1503],{"type":52,"value":1504},"Only submit when you have something specific and actionable to report. Include as much relevant context as possible.",{"type":47,"tag":1506,"props":1507,"children":1508},"style",{},[1509],{"type":52,"value":1510},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":1512,"total":1675},[1513,1525,1540,1555,1568,1582,1600,1611,1626,1644,1653,1664],{"slug":1514,"name":1514,"fn":1515,"description":1516,"org":1517,"tags":1518,"stars":29,"repoUrl":30,"updatedAt":1524},"eas-app-stores","deploy and submit Expo apps to stores","EAS service (paid). Deploy Expo apps to the app stores with EAS - build and submit to the iOS App Store, Google Play Store, and TestFlight, configure eas.json build and submit profiles, manage app versions and build numbers, and publish App Store metadata and ASO. Use whenever the user wants to deploy, release, or ship an app to production or the app stores, is preparing a production build, running eas build or eas submit, shipping to TestFlight, bumping version or build numbers, or setting up store listing metadata. For deploying an Expo website or API routes, use the eas-hosting skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1519,1520,1521,1522,1523],{"name":13,"slug":14,"type":15},{"name":27,"slug":28,"type":15},{"name":9,"slug":8,"type":15},{"name":18,"slug":19,"type":15},{"name":21,"slug":22,"type":15},"2026-07-24T05:36:44.164663",{"slug":1526,"name":1526,"fn":1527,"description":1528,"org":1529,"tags":1530,"stars":29,"repoUrl":30,"updatedAt":1539},"eas-hosting","deploy Expo websites to EAS Hosting","EAS service (paid). Deploy Expo websites and Expo Router API routes to EAS Hosting - export the web bundle, run eas deploy for production and PR preview URLs, manage environment secrets and custom domains, and work within the Cloudflare Workers runtime. Also covers authoring API routes (+api.ts handlers, HTTP methods, request handling, CORS). Use when deploying an Expo web app or API routes, setting up EAS Hosting, or configuring hosting environments and domains. Not for native builds or store releases - use the eas-app-stores skill for those.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1531,1532,1533,1536],{"name":27,"slug":28,"type":15},{"name":9,"slug":8,"type":15},{"name":1534,"slug":1535,"type":15},"Frontend","frontend",{"name":1537,"slug":1538,"type":15},"Web Development","web-development","2026-07-24T05:36:40.193701",{"slug":1541,"name":1541,"fn":1542,"description":1543,"org":1544,"tags":1545,"stars":29,"repoUrl":30,"updatedAt":1554},"eas-observe","configure EAS Observe for Expo apps","EAS service (paid). Use for anything related to EAS Observe - adding `expo-observe` to an Expo project (AppMetricsRoot\u002FObserveRoot HOC, markInteractive, the useObserve hook, the Expo Router \u002F React Navigation integrations for per-route metrics, and user-defined events via `Observe.logEvent`), querying via the EAS CLI (`eas observe:metrics-summary`, `observe:metrics`, `observe:routes`, `observe:events`, `observe:versions`), or interpreting the resulting metrics (cold\u002Fwarm launch, TTR, TTI, navigation cold\u002Fwarm TTR, update download, and the TTI frameRate params for triaging slow startups).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1546,1547,1548,1551],{"name":9,"slug":8,"type":15},{"name":21,"slug":22,"type":15},{"name":1549,"slug":1550,"type":15},"Observability","observability",{"name":1552,"slug":1553,"type":15},"React Native","react-native","2026-07-24T05:36:45.220605",{"slug":1556,"name":1556,"fn":1557,"description":1558,"org":1559,"tags":1560,"stars":29,"repoUrl":30,"updatedAt":1567},"eas-simulator","run and control remote iOS and Android simulators","EAS service (paid). Run and control a user's app on a remote iOS\u002FAndroid simulator hosted on EAS cloud. Read before running any `eas simulator:*` commands - it has the current syntax for this experimental API. Use whenever the user needs a simulator they can't run locally - 'run my app on a cloud simulator', 'use eas simulator to run\u002Finstall\u002Fscreenshot my app', 'I'm on Linux\u002FCursor and need an iOS device', 'no sim on this box \u002F headless CI', 'let an agent click through my app and screenshot it', 'test my dev build on a remote sim with live reload', 'stream a sim to my browser' - even when they don't say 'EAS Simulator' or 'cloud'. On a host WITHOUT a local simulator (Linux, CI, cloud sandbox) it's the default; on macOS, do NOT auto-trigger for a plain 'run on the simulator' - use it only for a cloud\u002Fremote\u002Fshareable sim, an iOS version they lack, or an agent-driven session. NOT for local sims (expo run:ios, Xcode, Android Studio), EAS Build\u002FUpdate, web preview, or physical devices.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1561,1562,1564,1565,1566],{"name":13,"slug":14,"type":15},{"name":1563,"slug":199,"type":15},"CLI",{"name":9,"slug":8,"type":15},{"name":18,"slug":19,"type":15},{"name":21,"slug":22,"type":15},"2026-07-31T05:52:18.602058",{"slug":1569,"name":1569,"fn":1570,"description":1571,"org":1572,"tags":1573,"stars":29,"repoUrl":30,"updatedAt":1581},"eas-update-insights","check health of EAS Updates","EAS service (paid). Check the health of published EAS Update: crash rates, install\u002Flaunch counts, unique users, payload size, and the split between embedded and OTA users per channel. Use when the user asks how an update is performing, whether a rollout is healthy, how many users are on the embedded build vs OTA, or wants to gate CI on update health.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1574,1577,1578,1579,1580],{"name":1575,"slug":1576,"type":15},"Analytics","analytics",{"name":27,"slug":28,"type":15},{"name":9,"slug":8,"type":15},{"name":21,"slug":22,"type":15},{"name":1549,"slug":1550,"type":15},"2026-07-24T05:36:50.17095",{"slug":1583,"name":1583,"fn":1584,"description":1585,"org":1586,"tags":1587,"stars":29,"repoUrl":30,"updatedAt":1599},"eas-workflows","configure EAS workflows for Expo projects","EAS service (paid). Helps understand and write EAS workflow YAML files for Expo projects. Use this skill when the user asks about CI\u002FCD or workflows in an Expo or EAS context, mentions .eas\u002Fworkflows\u002F, or wants help with EAS build pipelines or deployment automation.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1588,1591,1594,1595,1596],{"name":1589,"slug":1590,"type":15},"Automation","automation",{"name":1592,"slug":1593,"type":15},"CI\u002FCD","ci-cd",{"name":27,"slug":28,"type":15},{"name":9,"slug":8,"type":15},{"name":1597,"slug":1598,"type":15},"YAML","yaml","2026-07-24T05:36:43.205514",{"slug":1601,"name":1601,"fn":1602,"description":1603,"org":1604,"tags":1605,"stars":29,"repoUrl":30,"updatedAt":1610},"expo-app-clip","add iOS App Clip targets to Expo","Framework (OSS). Add an iOS App Clip target to an Expo app. Use when the user mentions App Clip, AASA, apple-app-site-association, appclips, smart app banner, or wants to ship a lightweight iOS Clip invoked from a URL alongside their parent app.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1606,1607,1608,1609],{"name":9,"slug":8,"type":15},{"name":18,"slug":19,"type":15},{"name":21,"slug":22,"type":15},{"name":1552,"slug":1553,"type":15},"2026-07-24T05:36:46.195935",{"slug":1612,"name":1612,"fn":1613,"description":1614,"org":1615,"tags":1616,"stars":29,"repoUrl":30,"updatedAt":1625},"expo-brownfield","integrate Expo and React Native into native apps","Framework (OSS). Integrate Expo and React Native into an existing native iOS or Android app. Use when the user mentions brownfield, embedding React Native in a native app, AAR\u002FXCFramework, or adding Expo to an existing Kotlin\u002FSwift project. Covers both the isolated approach and the integrated approach.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1617,1618,1619,1622,1623,1624],{"name":13,"slug":14,"type":15},{"name":9,"slug":8,"type":15},{"name":1620,"slug":1621,"type":15},"Integrations","integrations",{"name":18,"slug":19,"type":15},{"name":21,"slug":22,"type":15},{"name":1552,"slug":1553,"type":15},"2026-07-24T05:36:39.682299",{"slug":1627,"name":1627,"fn":1628,"description":1629,"org":1630,"tags":1631,"stars":29,"repoUrl":30,"updatedAt":1643},"expo-data-fetching","fetch and manage data in Expo apps","Framework (OSS). Use when implementing or debugging ANY network request, API call, or data fetching. Covers fetch API, React Query, SWR, error handling, caching, offline support, and Expo Router data loaders (`useLoaderData`).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1632,1635,1638,1639,1640],{"name":1633,"slug":1634,"type":15},"API Development","api-development",{"name":1636,"slug":1637,"type":15},"Caching","caching",{"name":9,"slug":8,"type":15},{"name":21,"slug":22,"type":15},{"name":1641,"slug":1642,"type":15},"React","react","2026-07-24T05:36:42.177188",{"slug":4,"name":4,"fn":5,"description":6,"org":1645,"tags":1646,"stars":29,"repoUrl":30,"updatedAt":31},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1647,1648,1649,1650,1651,1652],{"name":13,"slug":14,"type":15},{"name":27,"slug":28,"type":15},{"name":9,"slug":8,"type":15},{"name":18,"slug":19,"type":15},{"name":24,"slug":25,"type":15},{"name":21,"slug":22,"type":15},{"slug":1654,"name":1654,"fn":1655,"description":1656,"org":1657,"tags":1658,"stars":29,"repoUrl":30,"updatedAt":1663},"expo-dom","run web components in native apps","Framework (OSS). Use Expo DOM components to run web code in a webview on native and as-is on web. Migrate web code to native incrementally. For the end-to-end migration of a whole web app, use the expo-web-to-native skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1659,1660,1661,1662],{"name":9,"slug":8,"type":15},{"name":1534,"slug":1535,"type":15},{"name":21,"slug":22,"type":15},{"name":1552,"slug":1553,"type":15},"2026-07-24T05:36:41.176872",{"slug":1665,"name":1665,"fn":1666,"description":1667,"org":1668,"tags":1669,"stars":29,"repoUrl":30,"updatedAt":1674},"expo-examples","integrate Expo example projects","Framework (OSS). Expo's official example projects - the expo\u002Fexamples repo of ~70 `with-*` integrations (Stripe, Clerk, Supabase, OpenAI, maps, Reanimated, SQLite, Skia, NativeWind, and more). Use when integrating a third-party library or service into an existing Expo app and you want the canonical, version-matched pattern to adapt, or when scaffolding a new project from one with `npx create-expo --example`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1670,1671,1672,1673],{"name":9,"slug":8,"type":15},{"name":1620,"slug":1621,"type":15},{"name":21,"slug":22,"type":15},{"name":1552,"slug":1553,"type":15},"2026-07-24T05:36:35.174379",24,{"items":1677,"total":1731},[1678,1686,1693,1700,1708,1716,1724],{"slug":1514,"name":1514,"fn":1515,"description":1516,"org":1679,"tags":1680,"stars":29,"repoUrl":30,"updatedAt":1524},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1681,1682,1683,1684,1685],{"name":13,"slug":14,"type":15},{"name":27,"slug":28,"type":15},{"name":9,"slug":8,"type":15},{"name":18,"slug":19,"type":15},{"name":21,"slug":22,"type":15},{"slug":1526,"name":1526,"fn":1527,"description":1528,"org":1687,"tags":1688,"stars":29,"repoUrl":30,"updatedAt":1539},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1689,1690,1691,1692],{"name":27,"slug":28,"type":15},{"name":9,"slug":8,"type":15},{"name":1534,"slug":1535,"type":15},{"name":1537,"slug":1538,"type":15},{"slug":1541,"name":1541,"fn":1542,"description":1543,"org":1694,"tags":1695,"stars":29,"repoUrl":30,"updatedAt":1554},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1696,1697,1698,1699],{"name":9,"slug":8,"type":15},{"name":21,"slug":22,"type":15},{"name":1549,"slug":1550,"type":15},{"name":1552,"slug":1553,"type":15},{"slug":1556,"name":1556,"fn":1557,"description":1558,"org":1701,"tags":1702,"stars":29,"repoUrl":30,"updatedAt":1567},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1703,1704,1705,1706,1707],{"name":13,"slug":14,"type":15},{"name":1563,"slug":199,"type":15},{"name":9,"slug":8,"type":15},{"name":18,"slug":19,"type":15},{"name":21,"slug":22,"type":15},{"slug":1569,"name":1569,"fn":1570,"description":1571,"org":1709,"tags":1710,"stars":29,"repoUrl":30,"updatedAt":1581},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1711,1712,1713,1714,1715],{"name":1575,"slug":1576,"type":15},{"name":27,"slug":28,"type":15},{"name":9,"slug":8,"type":15},{"name":21,"slug":22,"type":15},{"name":1549,"slug":1550,"type":15},{"slug":1583,"name":1583,"fn":1584,"description":1585,"org":1717,"tags":1718,"stars":29,"repoUrl":30,"updatedAt":1599},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1719,1720,1721,1722,1723],{"name":1589,"slug":1590,"type":15},{"name":1592,"slug":1593,"type":15},{"name":27,"slug":28,"type":15},{"name":9,"slug":8,"type":15},{"name":1597,"slug":1598,"type":15},{"slug":1601,"name":1601,"fn":1602,"description":1603,"org":1725,"tags":1726,"stars":29,"repoUrl":30,"updatedAt":1610},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1727,1728,1729,1730],{"name":9,"slug":8,"type":15},{"name":18,"slug":19,"type":15},{"name":21,"slug":22,"type":15},{"name":1552,"slug":1553,"type":15},22]