Skip to content

Instantly share code, notes, and snippets.

@talosdev
Created May 29, 2018 08:15
Show Gist options
  • Select an option

  • Save talosdev/d986e4a84d6cf3ee4cda4a07caf08ea1 to your computer and use it in GitHub Desktop.

Select an option

Save talosdev/d986e4a84d6cf3ee4cda4a07caf08ea1 to your computer and use it in GitHub Desktop.
public interface PermissionRequestHandler {
boolean checkHasPermission();
Single<PermissionRequestResult> requestPermission();
enum PermissionRequestResult {
GRANTED,
DENIED_SOFT,
DENIED_HARD
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment