Skip to content

Commit 1679cca

Browse files
committed
Address PR review
1 parent cf74508 commit 1679cca

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,16 @@
1111
### Fixes
1212

1313
- Session Replay: Allow excluding `sentry-android-replay` from android targets ([#5174](https://github.com/getsentry/sentry-react-native/pull/5174))
14+
- If you are not interested in using Session Replay, you can exclude the `sentry-android-replay` module from your Android targets as follows (saves nearly 40KB compressed and 80KB uncompressed off the bundle size):
15+
16+
```gradle
17+
// from the android's root build.gradle file
18+
subprojects {
19+
configurations.all {
20+
exclude group: 'io.sentry', module: 'sentry-android-replay'
21+
}
22+
}
23+
```
1424

1525
### Dependencies
1626

0 commit comments

Comments
 (0)