Edit this page
Learn how to adopt Expo Prebuild in a project that was bootstrapped with React Native CLI.
There are many advantages of using Expo Prebuild to continuously generate your native projects. This guide will show you how to adopt Expo Prebuild in a project that was bootstrapped with npx @react-native-community/cli@latest init
. The amount of time it will take to convert your project depends on the amount of custom native changes that you have made to your Android and iOS native projects. This may take a minute or two on a brand new project, and on a large project, it will be much longer.
Adopting prebuild will automatically add support for developing modules with the Expo native module API by linking expo-modules-core
natively. You can also use any command from Expo CLI in your project.
Not all versions ofreact-native
are explicitly supported. Make sure to use a version ofreact-native
that has a corresponding Expo SDK version.
expo
packageThe expo
package contains the npx expo prebuild
command and indicates which prebuild template to use:
-
npm install expo
Ensure you install the version of expo
that works for your currently installed version of react-native
.
Modify the entry file to use registerRootComponent
instead of AppRegistry.registerComponent
:
+ import {registerRootComponent} from 'expo';
- import {AppRegistry} from 'react-native';
import App from './App';
- import {name as appName} from './app.json';
- AppRegistry.registerComponent(appName, () => App);
+ registerRootComponent(App);
Learn more about
registerRootComponent
.
Make sure you have committed your changes in case you want to revert, the command will warn you about this too!
If you're migrating an existing project, then you may want to refer to migrating native customizations first.
Run the following command to regenerate the android and ios directories based on the app config (app.json/app.config.js) configuration:
-
npx expo prebuild --clean
You can test that everything worked by building the projects locally:
# Build your native Android project
-
npx expo run:android
# Build your native iOS project
-
npx expo run:ios
Learn more about compiling native apps.
The following changes are optional but recommended.
.gitignore
You can add .expo to your .gitignore to prevent generated values from Expo CLI from being committed. These values are unique to your project on your local computer.
You can also add android and ios to the .gitignore if you want to ensure they are not committed between prebuilds.
app.json
Remove all fields that are outside the top-level expo
object as these will not be used in npx expo prebuild
.
{
- "name": "myapp",
- "displayName": "myapp"
+ "expo": {
+ "name": "myapp"
+ }
}
metro.config.js
See Customizing Metro.
package.json
You may want to change the scripts to use the Expo CLI run commands:
"scripts": {
"start": "expo start",
- "android": "react-native run-android",
- "ios": "react-native run-ios",
+ "android": "expo run:android",
+ "ios": "expo run:ios",
},
These commands have better logging, auto code signing, better simulator handling, and they ensure you run npx expo start
to serve files.
If your project has any native modifications (changes to the android or ios directories, such as app icon configuration or splash screen) then you'll need to configure your app config (app.json) to reflect those native changes.
expo.icon
in the app.json then re-run npx expo prebuild
.npx expo install
with all of the packages in your package.json dependencies. If a package requires a plugin but doesn't supply one, then you can try checking the community plugins at expo/config-plugins
to see if one already exists.Prebuild is the tip of the automation iceberg, here are some features you can adopt next:
npx expo prebuild
.