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

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.

Enabling Proactive Reporting

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.

Dart
BugReporting.setProactiveReportingConfigurations(
  const ProactiveReportingConfigs(
    enabled: true,
    gapBetweenModals: 2, // time in seconds
    modalDelayAfterDetection: 2, // time in seconds
  ),
);

Last updated