We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56c0875 commit 5699696Copy full SHA for 5699696
CHANGELOG.md
@@ -2,6 +2,17 @@
2
3
## Unreleased
4
5
+### Features
6
+
7
+- Session Replay: Add new experimental Canvas Capture Strategy ([#4777](https://github.com/getsentry/sentry-java/pull/4777))
8
+ - A new screenshot capture strategy that uses Android's Canvas API for more accurate text masking
9
+ - Any `.drawText()` calls are replaced with rectangles to ensure no text is not captured
10
+ ```kotlin
11
+ SentryAndroid.init(context) { options ->
12
+ options.sessionReplay.screenshotStrategy = ScreenshotStrategyType.CANVAS
13
+ }
14
+ ```
15
16
### Fixes
17
18
- Use logger from options for JVM profiler ([#4771](https://github.com/getsentry/sentry-java/pull/4771))
0 commit comments