HomeDocumentationAPI Reference
Getting StartedAPI ReferenceHelp CenterVideo Tours

Disabling/Enabling Feature Requests

Described here is how to disable or enable the feature requests for your Xamarin apps.

You can completely prevent any feature request related features from displaying by disabling it using the API below.

//Enable
IBGFeatureRequests.Enabled = true;

//Disable
IBGFeatureRequests.Enabled = false;
//Enable
InstabugCore.SetFeatureRequestsState(Feature.State.Enabled);

//Disable
InstabugCore.SetFeatureRequestsState(Feature.State.Disabled);