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

Disabling/Enabling Feature Requests

Described here is how to disable or enable the feature requests for your Android app.

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

//Enable
FeatureRequests.setState(Feature.State.ENABLED);

//Disable
FeatureRequests.setState(Feature.State.DISABLED);

Last updated