Setup Proactive Bug Reporting
Set up proactive bug reporting for your iOS app with Luciq. Automatically capture and report bugs at defined moments without requiring user interaction.
Enabling Proactive Reporting
By default, the Proactive Reporting is disabled. You can use the below API 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.
let configurations = ProactiveReportingConfigurations()
configurations.enabled = true //Enable/disable
configurations.gapBetweenModals = 2 // Time in seconds
configurations.modalDelayAfterDetection = 60 // Time in seconds
BugReporting.setProactiveReportingConfigurations(configurations) LCQProactiveReportingConfigurations *configurations = [[LCQProactiveReportingConfigurations alloc] init];
configurations.enabled = YES; //Enable/disable
configurations.gapBetweenModals = @2; // Time in seconds
configurations.modalDelayAfterDetection = @60; // Time in seconds
[LCQBugReporting setProactiveReportingConfigurations:configurations];Last updated