Setup Extended Bug Report

This section documents the APIs you can use to collect specific details in your bug reports from your QA team, internal testers, or beta testers on your iOS apps.

Enabling the Extended Bug Report

By default, the Extended Bug Report mode is disabled. When enabling the Extended Bug Report, you can set whether the additional fields are required or optional.

BugReporting.extendedBugReportMode = .enabledWithRequiredFields

Here are the possible modes you can set for Extended Bug Reports.

//Disable extended bug report mode
.disabled
//Enable extended bug report mode and make all additional fields required 
.enabledWithRequiredFields
//Enable extended bug report mode and make all additional fields optional
.enabledWithOptionalFields

Last updated