New to Claude Skills? Learn how to install them →

Eexpo on GitHub

Expo Development Client

Free

Build and test custom Expo clients for native apps.

by expo2.4k stars on expo/skills
1 views
Updated Aug 7, 2026
Get this skill

Free · Opens the source repo

What Expo Development Client does

The Expo Development Client skill enables developers to create and distribute custom Expo development clients for testing native code changes on physical devices. This skill is particularly useful for those working on real or production applications that require features beyond what Expo Go provides. With this skill, you can build development clients locally or through EAS Build, allowing for efficient testing of your app's branches and custom native modules.

Using EAS Build, you can create development clients that are tailored to your specific needs, including support for local Expo modules, third-party native modules, and Apple-specific targets like widgets and app clips. The skill simplifies the process of building and submitting your app to TestFlight, enabling you to focus on development rather than deployment logistics. For local builds, developers can generate .ipa files for iOS and .apk or .aab files for Android, making it straightforward to test on actual devices.

This skill is ideal for developers who are moving beyond simple prototypes and need a robust setup for testing and iterating on their applications. It provides essential functionality for managing development builds, including automatic versioning and build number increments, ensuring that you can maintain a smooth workflow as your app evolves. The integration with EAS Build also means that you can leverage cloud resources for building and distributing your applications, although local builds remain a free option.

In summary, the Expo Development Client skill is a crucial tool for developers looking to create custom Expo clients for comprehensive testing of their native applications. It streamlines the build and distribution process, making it easier to implement and test new features effectively.

When to use it

Use this skill when you need to create development clients for real applications that require native code changes or third-party modules not available in Expo Go.

When not to use it

This skill is not suitable for simple prototypes or applications that do not require native code or custom modules, as Expo Go may suffice in those cases.

What you can build with it

Testing Native Features

When developing an app that utilizes custom native code or third-party libraries, use this skill to create a development client for thorough testing.

Building for TestFlight

Easily build your iOS app and submit it to TestFlight for beta testing with a single command, streamlining your deployment process.

Local Development Builds

Generate local builds for both iOS and Android to test your app on real devices, ensuring that all features work as intended before release.

How to install Expo Development Client

View source

1. Install with the skills CLI

npx skills add expo/skills/expo-dev-client --agent claude-code

2. Or install it manually

Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.

Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs

Inside SKILL.md

Written by expo

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.

Free locally; cloud builds are paid. expo-dev-client itself is open source and building locally is free. Building or distributing via EAS Build/TestFlight uses your EAS plan's build minutes and needs a paid Apple Developer account for device/TestFlight distribution. See https://expo.dev/pricing.

Important: When Development Clients Are Needed

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 for the full reasoning.

You need a dev client ONLY when using:

  • Local Expo modules (custom native code)
  • Apple targets (widgets, app clips, extensions)
  • Third-party native modules not in Expo Go
  • Config plugins, or testing remote push notifications and App/Universal Links

EAS Configuration

Ensure eas.json has a development profile:

{
  "cli": {
    "version": ">= 16.0.1",
    "appVersionSource": "remote"
  },
  "build": {
    "production": {
      "autoIncrement": true
    },
    "development": {
      "autoIncrement": true,
      "developmentClient": true
    }
  },
  "submit": {
    "production": {},
    "development": {}
  }
}

Key settings:

  • developmentClient: true - Bundles expo-dev-client for development builds
  • autoIncrement: true - Automatically increments build numbers
  • appVersionSource: "remote" - Uses EAS as the source of truth for version numbers

Building for TestFlight

Build iOS dev client and submit to TestFlight in one command:

eas build -p ios --profile development --submit

This will:

  1. Build the development client in the cloud
  2. Automatically submit to App Store Connect
  3. Send you an email when the build is ready in TestFlight

After receiving the TestFlight email:

  1. Download the build from TestFlight on your device
  2. Launch the app to see the expo-dev-client UI
  3. Connect to your local Metro bundler or scan a QR code

Building Locally

Build a development client on your machine:

# iOS (requires Xcode)
eas build -p ios --profile development --local

# Android
eas build -p android --profile development --local

Local builds output:

  • iOS: .ipa file
  • Android: .apk or .aab file

Installing Local Builds

Install iOS build on simulator:

# Find the .app in the .tar.gz output
tar -xzf build-*.tar.gz
xcrun simctl install booted ./path/to/App.app

Install iOS build on device (requires signing):

# Use Xcode Devices window or ideviceinstaller
ideviceinstaller -i build.ipa

Install Android build:

adb install build.apk

Building for Specific Platform

# iOS only
eas build -p ios --profile development

# Android only
eas build -p android --profile development

# Both platforms
eas build --profile development

Checking Build Status

# List recent builds
eas build:list

# View build details
eas build:view

Using the Dev Client

Once installed, the dev client provides:

  • Development server connection - Enter your Metro bundler URL or scan QR
  • Build information - View native build details
  • Launcher UI - Switch between development servers

Connect to local development:

# Start Metro bundler
npx expo start --dev-client

# Scan QR code with dev client or enter URL manually

Troubleshooting

Build fails with signing errors:

eas credentials

Clear build cache:

eas build -p ios --profile development --clear-cache

Check EAS CLI version:

eas --version
eas update

Submitting Feedback

If you encounter errors, misleading or outdated information in this skill, report it so Expo can improve:

npx --yes submit-expo-feedback@latest --category skills --subject "expo-dev-client" "<actionable feedback>"

Only submit when you have something specific and actionable to report. Include as much relevant context as possible. If an AI agent repeatedly failed or the user had to take over an Expo task, load the expo-skill-feedback skill and follow its eval-candidate flow instead of reusing the command above.

Frequently asked questions about Expo Development Client

Similar skills