You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Session Replay: experimental support for capturing SurfaceView content (e.g. Unity, video players, maps) (#5333)
To enable, set options.sessionReplay.isCaptureSurfaceViews = true
Or via manifest: <meta-data android:name="io.sentry.session-replay.capture-surface-views" android:value="true" />
Warning: masking granularity is at the SurfaceView level only — the SDK cannot mask individual elements rendered inside the SurfaceView (e.g. native Unity UI, map labels, video frames). Only enable for SurfaceViews whose content is safe to record.
Add Sentry.feedback() API for show() and capture() (#5349)
Sentry.showUserFeedbackDialog() is deprecated in favor of Sentry.feedback().show()
Sentry.captureFeedback() is deprecated in favor of Sentry.feedback().capture()
Sentry.captureUserFeedback() and UserFeedback are deprecated in favor of Sentry.feedback().capture() with the new Feedback type
SentryUserFeedbackDialog is deprecated in favor of SentryUserFeedbackForm
All deprecated APIs will be removed in the next major version
Deprecate SentryUserFeedbackButton (View-based and Compose-based) (#5350)
It will be removed in the next major version
Add per-form shake-to-show support for SentryUserFeedbackForm (#5353)
Useful for enabling shake-to-report on specific screens instead of globally