Permission

object Permission

Properties

Link copied to clipboard

Allows an app to access location in the background. If you're requesting this permission, you must also request either ACCESS_COARSE_LOCATION or ACCESS_FINE_LOCATION.

Link copied to clipboard
private const val _NONE_PERMISSION: String

None Permission

Link copied to clipboard

Allows an app to access location in the background. If you're requesting this permission above Build.VERSION_CODES.Q (including 29), it will contain the ACCESS_COARSE_LOCATION , If you're requesting this permission under Build.VERSION_CODES.Q, it will be replaced with ACCESS_COARSE_LOCATION .

Link copied to clipboard

Allows an app to access approximate location. Alternatively, you might want ACCESS_FINE_LOCATION .

Link copied to clipboard

Allows an app to access precise location. Alternatively, you might want ACCESS_COARSE_LOCATION .

Link copied to clipboard

Allows an application to read from external storage. If you're requesting this permission above Build.VERSION_CODES.TIRAMISU (including 33), it will be replaced with _NONE_PERMISSION.

Link copied to clipboard

Allows an application to read audio files from external storage. If you're requesting this permission under Build.VERSION_CODES.TIRAMISU, it will be replaced with READ_EXTERNAL_STORAGE .

Link copied to clipboard

Allows an application to read image files from external storage. If you're requesting this permission under Build.VERSION_CODES.TIRAMISU, it will be replaced with READ_EXTERNAL_STORAGE .

Link copied to clipboard

Allows an application to read video files from external storage. If you're requesting this permission under Build.VERSION_CODES.TIRAMISU, it will be replaced with READ_EXTERNAL_STORAGE .

Link copied to clipboard

Allows an application to write to external storage. If you're requesting this permission above Build.VERSION_CODES.Q (including 30), it will be replaced with _NONE_PERMISSION.