Disabling/Enabling Bug Reporting
Enable or disable bug reporting at runtime in KMP.
// Disable bug reporting
BugReportingKmp.setEnabled(false)
// Enable bug reporting
BugReportingKmp.setEnabled(true)Last updated
Enable or disable bug reporting at runtime in KMP.
You can turn bug reporting (and its invocation/prompt options) on or off at runtime without reinitializing the SDK.
// Disable bug reporting
BugReportingKmp.setEnabled(false)
// Enable bug reporting
BugReportingKmp.setEnabled(true)When disabled, manual invocation and prompt options for bug and feedback are disabled. Other features (e.g. Crash Reporting, APM) are controlled separately.
Last updated