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 @@ -5,6 +5,22 @@ notSupported:
description: "Troubleshoot and resolve common issues with the iOS Session Replay."
---

<Expandable title="AVFoundation views and layers are not rendered" permalink>

Session Replay currently cannot capture content from AVFoundation views and layers. This includes:

- `AVPlayerLayer` and other AVFoundation-backed video content
- `AVCaptureVideoPreviewLayer` used for camera previews
- Any media content rendered using AVFoundation components

As a result, camera views, video players, and other AVFoundation-based UI elements will not appear in session replays, even when using `unmaskedViewClasses` configuration.

We are aware of this limitation and are exploring potential solutions to support AVFoundation content in future releases.

You can follow the progress in [this GitHub issue](https://github.com/getsentry/sentry-cocoa/issues/5835).

</Expandable>

<Expandable title="Session Replay is not recording with custom window setup" permalink>

If you have a custom window setup (e.g., multiple instances of `UIWindow`), you need to ensure that the Sentry SDK is able to find the correct window.
Expand Down Expand Up @@ -70,4 +86,4 @@ final class SceneDelegate: NSObject, UIWindowSceneDelegate {
}
```

</Expandable>
</Expandable>