---
modificationDate: April 27, 2026
title: Overview of using Expo with existing React Native apps
description: Learn how to use Expo tools and services with existing React Native apps.
---

<AgentInstructions>

## Submitting Feedback

If this page contains errors, outdated information, or gaps that blocked you from completing a task, report it so the docs can be improved:

curl -X POST https://api.expo.dev/v2/feedback/docs-send -H 'Content-Type: application/json' -d '{"url":"/bare/overview/","feedback":"🤖 Agent feedback: <specific, actionable description>"}'

Only submit when you have something specific and actionable to report.

</AgentInstructions>

# Overview of using Expo with existing React Native apps

Learn how to use Expo tools and services with existing React Native apps.

> For the complete documentation index, see [llms.txt](/llms.txt). Use this file to discover all available pages.

If you have a React Native app that doesn't use any Expo tools, you might be wondering what Expo can provide for you, why you might want to use Expo tools and services, and how to get started.

**All tools and services provided by Expo work great in any React Native app**.

You can use [EAS](/eas) to get quickly set up with a professional CI/CD workflow for building, reviewing, deploying, and updating your apps. [Expo CLI](/more/expo-cli) provides the best command-line experience for working with React Native. The [Expo SDK](/versions/latest) is an extended standard library for React Native. It gives developers high-quality, well-maintained native libraries that use consistent API conventions to make them easier to learn and use.

If you've ever written a native module for React Native, you'll be surprised how much easier it is to build and maintain modules with the idiomatic Swift and Kotlin DSL provided by the [Expo Modules API](/modules/overview).

There's so much more to explore, and the links below will help you to explore the options available to you.

## Incremental adoption steps

Below are four suggested phases of incremental adoption. These phases generally progress from quick changes to improve developer experience, to more significant workflow and codebase optimizations.

Only the first phase — prerequisites — is required by other phases. After following its instructions, you can skip to the tools and services that are most relevant to your goals in adopting Expo.

### Prerequisites

These first steps are required to later adopt Expo tools and services:

[Install Expo modules](/bare/installing-expo-modules) — To unlock Expo capabilities, you need to install the expo package in your existing React Native project. This guide provides both automated and manual installation steps. — expo

[Use Expo CLI](/bare/using-expo-cli) — Migration to Expo CLI is a drop-in replacement for @react-native-community/cli. It provides full compatibility with all Expo tools and services. This guide explains the benefits and provides compilation commands to start your development server after installingexpo package. — @react-native-community/cli — expo

### Quick wins

The following helps improving development experience and requires configuration:

[Use Expo SDK](/versions) — Use one of the many libraries provided by the Expo SDK, an extensive set of libraries that provide access to native APIs.

[Install expo-dev-client](/bare/install-dev-builds-in-bare) — expo-dev-client provides access to Expo Go-style app launcher interface into your debug app variants. Learn how to install and configure it in your existing React Native project. — expo-dev-client

[Write native modules](/modules/overview) — Use the Expo Modules API to write native modules using Swift and Kotlin.

[Native project upgrade helper](/bare/upgrade) — View file-by-file diffs of all the changes you need to make to your native projects to upgrade them to the next Expo SDK and React Native version.

### New workflows

Once your app has `expo` package installed, you can submit your app to app stores with a single command or update configure `expo-updates` library to manage remote updates to you app's code:

[App distribution](/distribution/introduction) — Build and submit your app to app stores with a single command.

[Install expo-updates](/bare/installing-updates) — Learn how to install and configure expo-updates to manage remote updates and enable PR previews. — expo-updates

### New mindsets

The following helps with your project's long term maintainability, native code maintenance, and easier upgrades:

[Adopt Prebuild](/guides/adopting-prebuild) — Learn how to simplify maintaining your native projects by generating them on demand from configuration.

[Expo Router](/router/introduction) — Expo Router is a file-based routing library that offers advantages such as organized navigation hierarchy, automatic deep linking support, and more.

## Common questions

How long will it take to adopt Expo in my existing React Native project?

Adopting Expo doesn't have to be done in one step. You can start with the _quick wins_ and then move on to more complex parts. You can also pick and choose which features you want to adopt based on what is most helpful for your project.

What will I gain from using Expo in my React Native app?

Adopting Expo tools in your existing React Native app can help you develop faster with the [Expo SDK](/versions/latest), streamline native code maintenance and upgrades with [CNG](/workflow/continuous-native-generation), deploy faster with [EAS Update](/eas-update/introduction), and more.

Who uses Expo?

Expo is used by top companies worldwide that serve millions of end users. For more information, see our [Expo showcase](https://expo.dev/customers).

What impact will adopting Expo have on my app's size?

The `expo` package has a small footprint since it only includes a minimal set of modules required in every app with autolinking infrastructure and other Expo SDK libraries that are built-in. For more information on how to determine the actual size of your app, see [Understanding app size](/distribution/app-size).

Why did React Native recommend using Expo?

Most React Native developers solve common problems when building an app, such as implementing navigation, accessing Native APIs, upgrading to new versions, and more. This requires using a specific set of tools and libraries to build and maintain your app — which means you are creating your own framework.

Expo solves these problems by providing a set of primitives and helping you (the developer) to focus on building your app. It also offers tools to iterate faster in development. For more information, see [Why React Native recommends using a framework](https://reactnative.dev/blog/2024/06/25/use-a-framework-to-build-react-native-apps).

Do I have to get rid of my native projects to use Expo?

By default, Expo projects created with `create-expo-app` use [Continuous Native Generation (CNG)](/workflow/continuous-native-generation) and do not contain **android** and **ios** native directories. If you incrementally adopt Expo in your existing React Native app, you don't have to remove these directories. You can use `npx expo run:[android|ios]` as an alternative to commands offered by `@react-native-community/cli` to compile your app locally and keep the configuration of your native projects.

I use CodePush. Can I continue using it with Expo?

CodePush will be retired in March 2025 and is incompatible with React Native's New Architecture, so, in the long run, we recommend switching to EAS Update to manage remote updates to your app's code. However, you can start using Expo tools in your CodePush enabled app today, including the Expo SDK, Expo CLI, EAS Build, and more.

Do I have to build with EAS?

[Expo Application Services (EAS)](/eas) are deeply integrated cloud services for Expo and React Native apps that provide tools to build, test, and deploy your app.

Although we recommend using EAS for a smooth collaboration with your teammates and fast distribution, you can compile your app locally, on your CI, or any other way you prefer.

Can I install third-party native libraries in my code?

Yes, you can install and use third-party libraries that require native projects (**android** and **ios**) configuration or provides a [config plugin](/config-plugins/introduction) with [development builds](/workflow/overview#development-builds). See [Using Third-Party libraries](/workflow/using-libraries#third-party-libraries) for more information.

I use React Navigation. Do I have to use Expo Router?

You can continue using any navigation library in your project. However, we recommend using Expo Router for all the benefits [described here](/router/introduction).
