Setup Proactive Bug Reporting

This page covers how you can use Proactive Reporting to prompt users to submit feedback reports and how to configure it using APIs.

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.

circle-info

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