📄 expo/versions/latest/sdk/dev-client

File: dev-client.md | Updated: 11/15/2025

Source: https://docs.expo.dev/versions/latest/sdk/dev-client

Hide navigation

Search

Ctrl K

Home Guides EAS Reference Learn

Reference version

SDK 54 (latest)

Archive Expo Snack Discord and Forums Newsletter

Expo DevClient iconExpo DevClient

GitHub Changelog npm

Ask AI

A library that allows creating a development build and includes useful development tools.

GitHub Changelog npm

Ask AI

Android

iOS

tvOS

Bundled version:

~6.0.17

Copy page


expo-dev-client adds various useful development tools to your debug builds:

Expo documentation refers to debug builds that include expo-dev-client as development builds .

Installation


Terminal

Copy

- npx expo install expo-dev-client

If you are installing this in an existing React Native app , start by installing expo in your project. Then, follow the instructions from Install expo-dev-client in an existing React Native project .

Configuration in app config


You can configure development client launcher using its built-in config plugin if you use config plugins in your project (Continuous Native Generation (CNG) ). The plugin allows you to configure various properties that cannot be set at runtime and require building a new app binary to take effect. If your app does not use CNG, then you'll need to manually configure the library.

Example app.json with config plugin

app.json

Copy

{ "expo": { "plugins": [ [ "expo-dev-client", { "launchMode": "most-recent" } ] ] } }

Configurable properties

| Name | Default | Description | | --- | --- | --- | | launchMode | "most-recent" | Determines whether to launch the most recently opened project or navigate to the launcher screen.<br><br>* most-recent - Attempt to launch directly into a previously opened project and if unable to connect, fall back to the launcher screen.<br>* launcher - Opens the launcher screen. | | addGeneratedScheme | true | By default, expo-dev-client will register a custom URL scheme to open a project. Set this property to false to disable this scheme. |

TV support


  • This library is only supported for TV in SDK 54 and later.
    • Android TV: All operations are supported, similar to an Android phone.
    • Apple TV: Basic operations with a local or tunneled packager are supported. Authentication to EAS and listing of EAS builds and updates is not yet supported.

API


import * as DevClient from 'expo-dev-client';

Methods


DevClient.closeMenu()

Android

iOS

tvOS

A method that closes development client menu when called.

Returns:

void

DevClient.hideMenu()

Android

iOS

tvOS

A method that hides development client menu when called.

Returns:

void

DevClient.openMenu()

Android

iOS

tvOS

A method that opens development client menu when called.

Returns:

void

DevClient.registerDevMenuItems(items)

Android

iOS

tvOS

| Parameter | Type | | --- | --- | | items | [ExpoDevMenuItem[]](https://docs.expo.dev/versions/latest/sdk/dev-client#expodevmenuitem) |

A method that allows to specify custom entries in the development client menu.

Returns:

[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise) <void>

Types


ExpoDevMenuItem

Android

iOS

tvOS

An object representing the custom development client menu entry.

| Property | Type | Description | | --- | --- | --- | | callback | () => void | Callback to fire, when user selects an item. | | name | string | Name of the entry, will be used as label. | | shouldCollapse(optional) | boolean | A boolean specifying if the menu should close after the user interaction.<br><br>Default:false |