Add Mobile Session Replay Wireframes (Beta) documentation - #215
Draft
tylerjroach wants to merge 3 commits into
Draft
Add Mobile Session Replay Wireframes (Beta) documentation#215tylerjroach wants to merge 3 commits into
tylerjroach wants to merge 3 commits into
Conversation
Adds a self-contained "Wireframes (Beta)" section to each of the four mobile Session Replay SDK pages (Android, Swift, Flutter, React Native), following the existing convention that each SDK page stands on its own rather than linking out to a shared concept page. Each section covers: - Enabling capture via `wireframesOptions`, with the options table - How the four masking layers apply to wireframe text - Declaring text for an element, and redacting by pattern - Verifying output with `debugOptions.wireframeEmitter` and the per-element `maskDecision` - Risks to mitigate, with the mitigation for each Written in each platform's own API vocabulary, and each carries its own known gap: transparent composables on Compose, no scraped text on SwiftUI, and legacy-architecture `<Text>` on React Native. No version callouts yet — the SDK minors carrying wireframes are not cut, so those need adding at release time along with a changelog entry. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Contributor
|
Preview deployment for your docs. Learn more about Mintlify Previews.
💡 Tip: Enable Workflows to automatically generate PRs for you. |
Contributor
Confidence Score: 5/5The PR appears safe to merge because no blocking failure remains within the follow-up review scope. No blocking failure remains.
|
| Filename | Overview |
|---|---|
| docs/tracking-methods/sdks/android/android-replay.mdx | Adds Android wireframe configuration, masking, verification, and risk guidance. |
| docs/tracking-methods/sdks/flutter/flutter-replay.mdx | Adds Flutter-specific wireframe APIs, masking semantics, and privacy guidance. |
| docs/tracking-methods/sdks/react-native/react-native-replay.mdx | Adds React Native wireframe configuration, bridge details, and architecture limitations. |
| docs/tracking-methods/sdks/swift/swift-replay.mdx | Adds Swift wireframe APIs and documents the SwiftUI scraped-text limitation. |
Reviews (3): Last reviewed commit: "Separate wireframe masking evaluation or..." | Re-trigger Greptile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds a self-contained "Wireframes (Beta)" section to each of the four mobile Session Replay SDK pages (Android, Swift, Flutter, React Native), following the existing convention that each SDK page stands on its own rather than linking out to a shared concept page.
Each section covers:
wireframesOptions, with the options tabledebugOptions.wireframeEmitterand the per-elementmaskDecisionWritten in each platform's own API vocabulary, and each carries its own known gap: transparent composables on Compose, no scraped text on SwiftUI, and legacy-architecture
<Text>on React Native.No version callouts yet — the SDK minors carrying wireframes are not cut, so those need adding at release time along with a changelog entry.