Skip to content

Instantly share code, notes, and snippets.

  • 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?
const permission = await check(PERMISSIONS.ANDROID.READ_EXTERNAL_STORAGE);
if (permission !== RESULTS.GRANTED) {
const result = await request(PERMISSIONS.ANDROID.READ_EXTERNAL_STORAGE);
if (result !== RESULTS.GRANTED) {
throw new Error('Please allow the storage access permission request.');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment