All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.io.github.kpermissions.enum.EnumAppPermission.kt Maven / Gradle / Ivy

There is a newer version: 1.0.3
Show newest version
package io.github.kpermissions.enum

enum class EnumAppPermission {
    // Common for Android, iOS, JavaScript, and WebAssembly
    CALENDAR_READ,
    CALENDAR_WRITE,
    CONTACTS_WRITE,
    CONTACTS_READ,
    LOCATION,
    LOCATION_ALWAYS,
    LOCATION_WHEN_IN_USE,
    CAMERA,
    MICROPHONE,
    NOTIFICATION,
    BLUETOOTH,

    /**
     * Android only
     */
    PHONE,
    WRITE_STORAGE,
    READ_STORAGE,
    PHOTO,
    VIDEO,


    // iOS specific
    /**
     * iOS only: manage app tracking transparency
     */
    APP_TRACKING_TRANSPARENCY,
    GALLERY,


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy