Skip to content

Fixing incorrect package name #1501

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 25, 2020
Merged
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ Include the project by adding it to your dependency list in `app/build.gradle`:
```java
dependencies {
// ... other dependencies listed here //
implementation project(':@sentry-react-native')
implementation project(':@sentry_react-native')
}
```

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

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