Integrating Instabug with Expo
Instabug does not fully support Expo, currently. Some features might be missing.
You can use our SDK with the managed workflow and Expo custom dev client by following the steps below:
Install expo-dev-client using npx expo install expo-dev-client
Modifying the scripts section in package.json to use expo-dev-client instead, it should look like this:
"scripts": {
"start": "expo start --dev-client",
"android": "expo run:android",
"ios": "expo run:ios",
...
You can then run the app using yarn iOS or yarn Android.
Updated 13 days ago