Bug Reporting Callbacks
Covered here are event handlers that you can use to have a block of code executed when a certain action is triggered for your React Native apps.
Before Invoking Luciq
BugReporting.onInvokeHandler(function () {
// Perform any UI changes before the SDK's UI is shown.
});Before Sending a Report
Luciq.onReportSubmitHandler((report) => {
// Attach logs and extra data to reports.
});After Dismissing Luciq
BugReporting.onSDKDismissedHandler(function (dismissType, reportType) {
// Perform any UI changes after the SDK's UI has been dismissed.
});Last updated