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

Setup Proactive Bug Reporting

Enable Proactive Reporting in your React Native app with Luciq. Off by default, so set the pop-up gaps and launch delay from JavaScript.

Enabling Proactive Reporting

By default, Proactive Reporting is disabled. Use the API below to:

  • Enable/disable the feature.

  • Configure the gap between two pop-ups for the same user.

  • Configure the gap between the app launch and the first pop-up.

The gap calculation starts when our SDK detects a Force Restart or a Crash occurrence, usually a few milliseconds after the launch.

JavaScript
BugReporting.setProactiveReportingConfigurations({
  enabled: true,
  gapBetweenModals: 2, // Time in seconds
  modalDelayAfterDetection: 1, // Time in seconds
});

Last updated