posthog-android icon indicating copy to clipboard operation
posthog-android copied to clipboard

Masking and redacting Jetpack Compose views

Open marandaneto opened this issue 1 year ago • 2 comments

Description

See note https://posthog.com/docs/session-replay/android

marandaneto avatar Aug 14 '24 09:08 marandaneto

Maybe possible to use the https://developer.android.com/develop/ui/compose/modifiers modifier = Modifier .postHog( isSensitive = true ) or something similar Similar for SwiftUI modifiers.

marandaneto avatar Sep 20 '24 13:09 marandaneto

Or a view wrapper:

PostHogMaskView {
    Button(
        ...
    ) {
        Text(
            ...
        )
    }
}

marandaneto avatar Sep 24 '24 06:09 marandaneto