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

Disabling/Enabling Bug Reporting

Enable or disable each Luciq reporting option in your iOS app, report a bug, suggest an improvement, and ask a question, together or one by one.

When your users invoke the SDK, a popup appears with default Prompt Options for them to "Report a bug" (submit a bug), "Suggest an improvement" (send you feedback), or "Ask a question" (send you a chat).

These options can be disabled or enabled separately. When only a single option is enabled, it becomes the default invocation mode and the Prompt Options menu doesn't appear.

The below API completely disables all forms of bug, improvement, and question reports.

BugReporting.enabled = false
LCQBugReporting.enabled = NO;

You can also specify whether to show any of the Report a bug, Suggest an improvement, Ask a question options, or all using this API:

// Specify which of the feedback or bug options appear in the prompt options
BugReporting.promptOptionsEnabledReportTypes = [.bug, .feedback, .question]
// Specify which of the feedback or bug options appear in the prompt options
LCQBugReporting.promptOptionsEnabledReportTypes = LCQBugReportingReportTypeBug | LCQBugReportingReportTypeFeedback | LCQBugReportingReportTypeQuestion;

By default, all three options are enabled if they are available in your current subscription plan.

Last updated