PermissionStatus

The UX-relevant state of a runtime permission, as recommended by the Android permissions guidance (https://developer.android.com/training/permissions/requesting). Declared in lifecycle order.

  • NOT_REQUESTED — the user has never been prompted; request directly (no rationale needed yet).

  • DENIED_CAN_RETRY — the user denied once but the system will still show the dialog; show a rationale and offer to re-request.

  • PERMANENTLY_DENIED — the system will no longer show the dialog ("Don't allow" twice, or "Don't ask again"); the only recovery is the app's settings screen.

  • GRANTED — the permission is held; proceed.

Entries

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Properties

Link copied to clipboard

Returns a representation of an immutable list of all enum entries, in the order they're declared.

Link copied to clipboard
expect val name: String
Link copied to clipboard
expect val ordinal: Int

Functions

Link copied to clipboard

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Link copied to clipboard

Returns an array containing the constants of this enum type, in the order they're declared.