Edit this page
A guide on installing and configuring Flipper for debugging an Expo project.
Edit this page
Deprecated: React Native no longer recommends Flipper (RFC0641). We do not recommend using it. Features from Flipper, such as React Developer Tools and the network inspector, are available directly through Expo CLI in SDK 49 and above. See Debugging and profiling tools for more details.
Flipper is a platform tool for debugging React Native projects on an emulator/simulator or a physical device. It supports projects running on Android and iOS and is available as a desktop application on macOS, Windows, and Linux.
It offers various features such as a device log viewer, interactive native layout inspector, network inspector, local database inspector, crash reporter, and more. You can add more plugins available in the Flipper desktop app.
Before you get started, make sure you have the following installed on your computer:
1
Open the Flipper desktop app and click the Setup Doctor button from the bottom left menu.
If any dependencies are missing, follow the instructions provided by Flipper to install them.
2
expo-dev-client
Since Flipper requires native code, you'll need to create a development build. To set it up, install the expo-dev-client
library:
-
npx expo install expo-dev-client
3
expo-build-properties
The Expo SDK uses the bundled version of Flipper from react-native
. For Android, Flipper is enabled by default.
For iOS, you need to install expo-build-properties
and enable Flipper in the plugin configuration:
-
npx expo install expo-build-properties
Installing the package adds the expo-build-properties
plugin to your project's app.json. To enable Flipper, add the ios.flipper
property and set it to true
in the plugin configuration:
{
"plugins": [
[
"expo-build-properties",
{
"ios": {
"flipper": true
}
}
]
]
}
4
To configure and install a development build, follow the instructions below:
5
After installing the build, run the following command to start a development server:
-
npx expo start
Once the development server is running, open the Flipper desktop app and select your device or simulator under App Inspect:
If a third-party library uses "useFrameworks": "static"
for iOS in your project, integrating Flipper will not work since it is incompatible. For more information, see the notice on the compatibility issue in the expo-community-flipper
GitHub repository.
To learn more about the tool, see React Native support in Flipper documentation.