Skip to content

Instantly share code, notes, and snippets.

@AlexPrestonSB
Created April 30, 2021 18:59
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
Mandatory permissions for Calls.
private static final int REQUEST_PERMISSIONS_REQUEST_CODE = 1;
private static final String[] MANDATORY_PERMISSIONS = {
Manifest.permission.CAMERA,
Manifest.permission.RECORD_AUDIO,
Manifest.permission.WRITE_EXTERNAL_STORAGE
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment