Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 480 Bytes

README.md

File metadata and controls

18 lines (14 loc) · 480 Bytes

Bugsee for Jetpack Compose

Protecting views

In addition we support a way to mark your custom sensitive views so they will be hidden from the recorded video. We provide BugseeProtect composable function for this (BugseeProtect.kt).

setContent {
    ...
    val secureContent = @Composable {
        Text(text = "Confidential.")
    }

    BugseeProtect(
        contentToHide = { secureContent() }
    )
    ...
}