openPermissionSettings
Opens the system app settings page for this application.
This function navigates the user to the app's detailed settings page where they can manually grant permissions, manage storage, clear data, and adjust other app-specific settings.
Typically used when permissions are denied and need to be granted manually, or when users need to adjust system-level app configurations.
Usage
Button(onClick = { openPermissionSettings() }) {
Text("Open Settings to Grant Permissions")
}Content copied to clipboard
Automatic Usage
This function is automatically called by checkForPermissions when permissions are denied.