PermissionHandler

abstract class PermissionHandler

Constructors

Link copied to clipboard
constructor()

Functions

Link copied to clipboard
fun onBlocked(context: Context, blockedList: ArrayList<Permission>): Boolean
This method will be called if some permissions have previously been set not to ask again.
Link copied to clipboard
fun onDenied(context: Context, deniedPermissions: ArrayList<Permission>)
This method will be called if some of the requested permissions have been denied.
Link copied to clipboard
abstract fun onGranted()
This method will be called if all of the requested permissions are granted.
Link copied to clipboard
fun onJustBlocked(context: Context, justBlockedList: ArrayList<Permission>, deniedPermissions: ArrayList<Permission>)
This method will be called if some permissions have just been set not to ask again.