Skip to content
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 @@ -59,4 +59,17 @@ To minimize the performance impact of the Replay SDK on iOS and Android, conside
});
```

Note that the default value for `replaysSessionQuality` is `medium` and a `high` quality setting is also available.
Note that the default value for `replaysSessionQuality` is `medium` and a `high` quality setting is also available.

## Excluding Session Replay from Android

If you don’t plan to use Session Replay, you can exclude the sentry-android-replay module from your Android targets to reduce the bundle size by about 40KB compressed and 80KB uncompressed. Here's how you can do it:

```gradle
// from the android's root build.gradle file
subprojects {
configurations.all {
exclude group: 'io.sentry', module: 'sentry-android-replay'
}
}
```
Loading