on Permissions Result
Notifies when the status of each permission can be established. Below API 23, this method and checkStatus have the same behavior since the permissions status can be checked without sending a runtime request. Below API 23, the possible status are:
PermissionStatus.Granted -> the permission is present in the manifest.
PermissionStatus.Denied.Permanently -> the permission is not present in the manifest. Above API 23, this method checks the permissions status sending a runtime request. Above API 23, the possible status are:
PermissionStatus.Granted -> the permission is granted
PermissionStatus.Denied.ShouldShowRationale -> the permission is denied by the user and it can be useful to show a rationale explaining the motivation of this permission request
PermissionStatus.Denied.Permanently -> the permission is permanently denied by the user using the "never ask again" button on the permissions dialog.
Parameters
the status of each permission.