Skip to content

Commit 94e05d7

Browse files
authored
Fixing incorrect package name (#1501)
`@sentry-react-native` to `@sentry_react-native`
1 parent 9e054ab commit 94e05d7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/collections/_documentation/platforms/react-native/manual-setup.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ Include the project by adding it to your dependency list in `app/build.gradle`:
113113
```java
114114
dependencies {
115115
// ... other dependencies listed here //
116-
implementation project(':@sentry-react-native')
116+
implementation project(':@sentry_react-native')
117117
}
118118
```
119119

@@ -138,6 +138,6 @@ public class MainApplication extends Application implements ReactApplication {
138138
Add the following to your `settings.gradle` file:
139139

140140
```java
141-
include ':@sentry-react-native'
142-
project(':@sentry-react-native').projectDir = new File(rootProject.projectDir, '../node_modules/@sentry/react-native/android')
141+
include ':@sentry_react-native'
142+
project(':@sentry_react-native').projectDir = new File(rootProject.projectDir, '../node_modules/@sentry/react-native/android')
143143
```

0 commit comments

Comments
 (0)