Repro Steps Control
Learn how to control what user repro steps are captured in Luciq reports. Configure repro step masking to protect sensitive user actions from being recorded.
// Kotlin
val configurations = ReproConfigurations.Builder()
.setIssueMode(IssueType.All, ReproMode.EnableWithScreenshots)
.build()
Luciq.setReproConfigurations(configurations)// Kotlin
//Bug Reporting, Crash Reporting and Session Replay
IssueType.All
//Bug Reporting Only
IssueType.Bug
//Crash Reporting Only
IssueType.Crash
//Session Replay Only
IssueType.SessionReplay// Kotlin
//Enable with Screenshots
ReproMode.EnableWithScreenshots
//Enable with NO Screenshots
ReproMode.EnableWithNoScreenshots
//Disable
ReproMode.DisableLast updated