For the complete documentation index, see llms.txt. This page is also available as Markdown.

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.

Repro Steps is by default enabled with screenshots for both bug reporting and session replay and enabled without screenshots for crash reporting.

// Kotlin 
val configurations = ReproConfigurations.Builder()
  .setIssueMode(IssueType.All, ReproMode.EnableWithScreenshots)
  .build()

Luciq.setReproConfigurations(configurations)

You can change the value of the Issue Type.

// 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

You can change the value of ReproMode.

// Kotlin
//Enable with Screenshots
ReproMode.EnableWithScreenshots
//Enable with NO Screenshots
ReproMode.EnableWithNoScreenshots
//Disable
ReproMode.Disable

Then configure the SDK

  • iOS - docs

  • ReactNative - docs

  • Flutter - docs

  • KMP - docs

Last updated