This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* An enum class for Android dangerous permissions list | |
* Created from "https://developer.android.com/reference/android/Manifest.permission" | |
* Protection level: "dangerous" | |
*/ | |
enum class DangerousPermission( | |
val permissionName: String, val title: Int, val description: Int | |
) { |