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.
BugReporting.setProactiveReportingConfigurations({
enabled: true,
gapBetweenModals: 2, // Time in seconds
modalDelayAfterDetection: 1, // Time in seconds
});Last updated