Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,11 @@ BugSplat's `@bugsplat/expo` package provides crash and error reporting for Expo
## Installation

```sh
npx expo install @bugsplat/expo
npx expo install @bugsplat/expo expo-blob
```

`expo-blob` is a peer dependency because it ships native code that must match your project's Expo SDK version. Installing it with `expo install` picks the build that matches your SDK.

## Configuration

Add the config plugin to your `app.json` or `app.config.js`:
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@
"license": "MIT",
"homepage": "https://github.com/BugSplat-Git/bugsplat-expo#readme",
"dependencies": {
"@bugsplat/react": "^2.1.1",
"expo-blob": "^55.0.13"
"@bugsplat/react": "^2.1.1"
},
"devDependencies": {
"@types/react": "~19.1.1",
"expo": "~55.0.8",
"expo-blob": "~55.0.13",
"expo-module-scripts": "^55.0.2",
"jest-expo": "^55.0.11",
"react": "19.2.0",
Expand All @@ -50,6 +50,7 @@
"peerDependencies": {
"@bugsplat/symbol-upload": "*",
"expo": "*",
"expo-blob": "*",
"react": "*",
"react-native": "*"
},
Expand Down