openSettings

abstract fun openSettings()

Opens the app's settings page where user can manually enable grants.

Use this when grant is DENIED_ALWAYS and must be enabled via Settings.

Platform Behavior:

  • Android: Opens App Info Grants

  • iOS: Opens Settings Your App

Example:

// In UI when showing "Go to Settings" dialog
Button("Open Settings") {
grantManager.openSettings()
}