HomeGuidesReferenceLearn
ArchiveExpo SnackDiscord and ForumsNewsletter

FAQ

A list of common questions and limitations about Expo and related services.


This page lists some of the common questions and answers about Expo and related services. If you have a question that is not answered here, see Forums for more common questions.

What is Expo used for?

Expo is an open-source framework for apps that run natively on Android, iOS, and the web. Expo brings together the best of mobile and the web and enables many important features for building and scaling an app such as live updates, instantly sharing your app, and web support. The expo npm package enables a suite of incredible features for React Native apps. The expo package can be installed in nearly any React Native project. See what Expo offers for more information.

Do companies use Expo?

Yes, Expo is used by top companies worldwide, serving hundreds of millions of end users. See our showcase.

Why does Expo have its own SDK?

When Expo was first created, React Native had yet to be publicly released. This means there were no third-party packages. To make React Native's developer experience reasonable, we created several libraries to achieve common functionalities. Many of these libraries have since been forked and modified to meet various needs. We welcome users to mix and match whichever custom native code they need to make their app great.

The Expo SDK is well-tested, written in TypeScript, documented, and built for Android, iOS, and the web. Every module in the Expo SDK works together to ensure versioning always matches. This creates a nice upgrading experience.

The Expo SDK is also written with the Expo native API to make contributing, maintaining, and understanding easier.

What is the difference between Expo and React Native?

The expo package provides a suite of features that make it easier to develop, and scale complex React Native applications. You can install expo in nearly any React Native app. The expo package is not required to use Expo Application Services (EAS) or React Native, however, it is highly recommended. See what Expo offers for more information.

Do I need to switch from React Native to use Expo?

No, the expo npm package and CLI work with any React Native app. Expo Application Services (EAS) also works with all React Native apps with first-class support for builds, updates, app store submissions, and more.

How much does Expo cost?

The Expo platform is free and open source. This includes the libraries that make up the Expo SDK and the Expo CLI used for development. The Expo Go app, the easiest way to get started, is also free from the app stores.

Expo Application Services (EAS) is an optional suite of cloud services for React Native apps, from the Expo team. EAS makes it easier to build your app, submit it to the stores, keep it updated, send push notifications, and more. You can use EAS for free if the Free tier quotas are sufficient for your app. More information is available on the pricing page.

How do I add custom native code to my Expo project?

Expo supports adding custom native code and customizing that native code (Android/Xcode projects). To use any custom native code, you can create a development build and config plugins. We do recommend using the modules in the Expo SDK when possible for easier upgrades and improved developer experience.

Can I use Expo in the app that is created with React Native CLI?

Yes! All Expo tools and services work great in any React Native app. For example, you can use any part of the Expo SDK, expo-dev-client and EAS Build, Submit, and Update — they work great! Learn more about installing expo in your project, adopting prebuild, and setting up EAS Build.

How do I share my Expo project? Can I submit it to the app stores?

The fastest way to share your project is to publish with EAS Update and launch in a development build. This gives your app a URL; you can share this URL with anybody who has the development build for Android or iOS. URLs can also be opened in Expo Go for Android.

When ready, you can create a production build (.aab and .ipa) to submit to the app stores. You can build your app in a single command with EAS Build and submit it to the stores with EAS Submit.

You can also use internal distribution to share your app with an APK on Android and ad-hoc or enterprise provisioning on iOS.

Can I develop iOS apps on a Windows computer?

Traditionally you needed a macOS to develop iOS apps, however, you can use EAS Build to build your app in the cloud. You can also use EAS Submit to submit your app to the stores. Testing can be done on a physical iOS device using Expo Go or a development build.

What versions of Android and iOS are supported by the Expo SDK?

Expo SDK supports Android 5+ and iOS 13+. For more information, see Support for Android and iOS versions.

What is the minimal size of a "hello world" expo app?

A bare minimum production app created using pure Expo is less than 3 MB. For iOS, Expo targets a newer minimum iOS version which enables app store optimizations.

If the expo package is included in your app, it only adds 1 MB one time to the final size of apps on app stores. The expo package has a marginal size cost (for example, 150 Kib on Android). The rest of the size comes from the language runtime (such as Kotlin on Android).

Can I use Expo with my native library?

You can use native Android and iOS libraries with Expo by creating a custom native module with Swift and Kotlin. Many popular libraries already have custom native modules. Check out our React Native directory to find popular libraries for your use case.

Can I use Expo with this web library?

Many popular web packages such as three.js work with Expo and React Native. See Expo examples for more information.

Is Expo similar to React for web development?

Expo is an open-source framework for apps that run natively on Android, iOS, and the web. React Native is similar to react-dom from web development, enabling you to run React on a particular platform, however, it has a few key differences:

  • React Native does not support HTML or CSS.
  • Instead of using the DOM, React Native uses native components. For example, <View /> instead of <div />. Native components are more performant than the DOM and provide a much nicer user experience.
  • Unlike React.js which has access to browser APIs, React Native uses custom native APIs. For example, instead of navigator.geolocation, you use expo-location to access the user's location. Custom native APIs are similar to browser APIs except you have full control over them. This means you can access new features before they are available in the browser.

In the same way React.js frameworks help users create larger websites with ease, Expo helps users create larger apps with ease. Expo provides a suite of well-tested React Native modules that run on Android, iOS, and the web. Expo also provides a suite of tools for building, deploying, and updating your app.

Should I use Expo CLI or React Native CLI?

Expo CLI can be used simultaneously with React Native CLI. Expo CLI provides the same core functionality as React Native CLI, and additional functionality like automatic TypeScript setup, web support, auto installing compatible libraries, improved native build commands, tunneling, prebuild, and more.

Regardless of which CLI you use, you can use any part of the Expo SDK and Expo Application Services with your project.

Is Expo Go open source?

Yes, the source for Expo Go can be found in the expo/expo GitHub repository in the apps/expo-go directory. The Expo Go app is also built with Expo and React Native.

Is Expo eject deprecated?

Yes, Expo eject is a deprecated term and is no longer necessary. It was replaced by the npx expo prebuild command which continuously generates native projects for you based on the libraries in your project and the app config (app.json). Learn more in the Expo Prebuild documentation.

Unlike the expo eject library, authors can configure their libraries to work with Expo Prebuild by creating a config plugin. This means you can use any library with Expo Prebuild. You can also use any custom native code with Expo Prebuild by creating a development build.

Limitations

Previously, Expo had large native binary sizes and didn't support custom native code without "ejecting". These issues went away in December 2020 when we released EAS Build which supports any React Native app. The concept of "ejecting" was replaced by the popular Expo Prebuild feature which has been around since SDK 41 (April 2021). The expo eject command was fully deprecated in Expo SDK 46 (August 2022).

We believe Expo tools are a great option for anyone looking to create amazing cross-platform apps quickly. Nonetheless, everyone's project is unique, and there may be reasons Expo is not the right choice for what you're building. Reasons, why you may not want to use certain Expo tools with your project, are listed below:

EAS

For more information on what current limitations exist with EAS, see the following:

EAS Build

EAS Build is designed to work for any React Native project, whether or not you also use Expo Prebuild or manage your own native files. In some situations, you may need to change your project configuration, or it may be incompatible with your app. Learn more.

EAS Update

EAS Update is a hosted service that serves updates for projects using the expo-updates library. You can use it to fix small bugs and push quick fixes a snap in between app store submissions. In some situations, not be the right fit for a project. Learn more.

EAS Metadata

EAS Metadata helps create or maintain an app in the stores as easily as possible by using one configuration file. In some situations, not be the right fit for a project. Learn more.

Notifications

Push Notifications are an important feature, no matter what kind of app you're building. In some situations, you might want to know about common issues when setting up push notifications with Expo. Learn more.

Bare workflow

Similar to development builds, the bare workflow also provides access to the underlying native projects and any native code. It's a "bare" native project where you can make direct changes to the project's native android and ios directories rather than continuously generating them on demand using the app config and prebuild.

EAS Build is compatible with bare workflow projects if you check in the native directories, but no longer runs prebuild, as that could overwrite any manual customizations you have made to the native project files. You'll have to configure the native directories on your own with native tools such as Android Studio or Xcode.

Expo Go

Expo Go provides a quick way to get started with your app development. It comes with a pre-configured set of libraries known as the Expo SDK. This makes experimentation much faster and brings the mobile development experience much closer to the web development experience.

Like any other tool, it too has its limitations:

  • Using a third-party library that requires native code
  • Using a third-party push notification service

We strongly recommend any projects that require additional libraries with native code to migrate to development builds. It's like creating a version of Expo Go that is specifically customized to your app's needs.