Add Mobile Session Replay Wireframes (Beta) documentation - #215
Draft
tylerjroach wants to merge 1 commit into
Draft
Add Mobile Session Replay Wireframes (Beta) documentation#215tylerjroach wants to merge 1 commit into
tylerjroach wants to merge 1 commit 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 documentation-only PR appears safe to merge, with no concrete changed-code defect identified. The additions consistently document the beta feature across all four SDKs, use established MDX patterns, and explicitly disclose the relevant privacy risks and platform limitations.
|
| Filename | Overview |
|---|---|
| docs/tracking-methods/sdks/android/android-replay.mdx | Adds Android wireframe configuration, masking, verification, privacy guidance, and the Compose transparency limitation. |
| docs/tracking-methods/sdks/flutter/flutter-replay.mdx | Adds Flutter wireframe configuration and platform-specific masking and debugging guidance. |
| docs/tracking-methods/sdks/react-native/react-native-replay.mdx | Adds React Native wireframe APIs, regex behavior, privacy guidance, and the legacy iOS Text limitation. |
| docs/tracking-methods/sdks/swift/swift-replay.mdx | Adds Swift wireframe configuration, masking and debugging guidance, and clearly identifies the SwiftUI scraped-text limitation. |
Reviews (1): Last reviewed commit: "Add Mobile Session Replay Wireframes (Be..." | 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.