Setup Proactive Reporting
Enable Proactive Reporting in your Flutter app with Luciq. Turn the feature on and tune the pop-up frequency and launch delay from Dart.
Last updated
Enable Proactive Reporting in your Flutter app with Luciq. Turn the feature on and tune the pop-up frequency and launch delay from Dart.
By default, Proactive Reporting is disabled. You can 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.
BugReporting.setProactiveReportingConfigurations(
const ProactiveReportingConfigs(
enabled: true,
gapBetweenModals: 2, // time in seconds
modalDelayAfterDetection: 2, // time in seconds
),
);Last updated