Claude-skill-registry eas-ios-simulator-builds
Create and use iOS simulator development builds with EAS for Expo/React Native apps. Use when setting up simulator-only profiles, building, installing, and running dev clients on iOS simulators.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/eas-ios-simulator-builds" ~/.claude/skills/majiayu000-claude-skill-registry-eas-ios-simulator-builds && rm -rf "$T"
manifest:
skills/data/eas-ios-simulator-builds/SKILL.mdsource content
EAS iOS Simulator Builds
Overview
How to set up and run iOS simulator development builds with EAS (no Apple credentials required). Focused on creating simulator-only profiles, building, installing, and running the Expo dev client on iOS simulators.
Quick start
- Prereqs: macOS with Xcode + Command Line Tools installed; EAS CLI installed; iOS Simulator available.
- Install
if not present:expo-dev-client
.bunx expo install expo-dev-client - Use the simulator profile when building:
.bunx eas build --profile ios-sim --platform ios - Install/run after build: download the
, extract the.tar.gz
, then.app
andxcrun simctl install booted path/to.app
(or the app bundle ID).xcrun simctl launch booted host.exp.Exponent
Profile setup (eas.json)
Add a simulator-only profile (no signing):
{ "build": { "ios-sim": { "extends": "development", "ios": { "simulator": true } } } }
Notes:
ensures a simulator build (no Apple account/signing).simulator: true- Keep bundle identifiers consistent with your app config; OTA/runtimeVersion rules still apply.
Build & install
- Build:
bunx eas build --profile ios-sim --platform ios- This produces a
containing the.tar.gz
bundle..app
- This produces a
- Extract:
tar -xzf <downloaded>.tar.gz - Install on a booted simulator:
xcrun simctl install booted <path/to>.app - Launch:
(check yourxcrun simctl launch booted <bundleIdentifier>
/app.config.ts
for the identifier).app.json
Run with your app
- Start the Metro server:
(or with your APP_VARIANT env if applicable).bunx expo start - Open the installed dev client in Simulator and scan the QR or use the Metro URL to load the app.
Troubleshooting
- If the simulator isn’t booted, start one from Xcode or
before install.xcrun simctl boot "iPhone 15" - If the app won’t launch, verify the bundle identifier matches the installed app (
).simctl get_app_container booted <bundleIdentifier> - Clear cache if loading issues:
.bunx expo start -c - If you accidentally build a device build, ensure
is set in the profile you’re using.simulator: true