Skip to content

Commit f70c473

Browse files
committed
Update privacy and replay docs
1 parent 052779d commit f70c473

File tree

1 file changed

+5
-6
lines changed
  • docs/platforms/dart/guides/flutter/session-replay

1 file changed

+5
-6
lines changed

docs/platforms/dart/guides/flutter/session-replay/index.mdx

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ description: "Learn how to enable Session Replay in your mobile app."
88

99
<Alert>
1010

11-
Flutter Session Replay is available on **iOS** and **Android**. This SDK support is still experimental as we iron out any bugs that are reported. If you encounter any issues please let us know via a GitHub ticket.
11+
Flutter Session Replay is available on **iOS** and **Android**.
1212

1313
</Alert>
1414

@@ -18,12 +18,12 @@ By default, our Session Replay SDK masks all text content, images, and user inpu
1818

1919
## Pre-requisites
2020

21-
Make sure your Sentry Flutter SDK version is at least 8.9.0, which is required for Session Replay.
21+
Make sure your Sentry Flutter SDK version is at least 9.0.0, which is required for Session Replay.
2222
You can update your `pubspec.yaml` to the matching version:
2323

2424
```yaml
2525
dependencies:
26-
sentry_flutter: ^8.9.0
26+
sentry_flutter: ^9.0.0
2727
```
2828
2929
## Setup
@@ -33,9 +33,8 @@ To set up replay, enable it by setting a non-zero sample rate. Also, make sure y
3333
```dart
3434
await SentryFlutter.init(
3535
(options) {
36-
...
37-
options.experimental.replay.sessionSampleRate = 1.0;
38-
options.experimental.replay.onErrorSampleRate = 1.0;
36+
options.replay.sessionSampleRate = 1.0;
37+
options.replay.onErrorSampleRate = 1.0;
3938
},
4039
appRunner: () => runApp(
4140
SentryWidget(

0 commit comments

Comments
 (0)