WRITE_EXTERNAL_STORAGE Permission

Following: WRITE_EXTERNAL_STORAGE Permission · Issue #11549 · expo/expo · GitHub

How to ask permission WRITE_EXTERNAL_STORAGE permission with expo-permission ? on Permission.ts only have limited permission that we can ask. So how to ask permission that not listed in ?

export const CAMERA_ROLL = MEDIA_LIBRARY;
export const AUDIO_RECORDING = 'audioRecording'; 
export const LOCATION = 'location'; 
export const USER_FACING_NOTIFICATIONS = 'userFacingNotifications'; 
export const NOTIFICATIONS = 'notifications';
export const CONTACTS = 'contacts';
export const CALENDAR = 'calendar'; 
export const REMINDERS = 'reminders'; 
export const SYSTEM_BRIGHTNESS = 'systemBrightness'; 
export const MOTION = 'motion';

Edit: i use expo-permission on bare project

Hey @ardyfeb, here you go: https://docs.expo.io/versions/v40.0.0/sdk/permissions/#permissionsmedia_library_write_only

Make sure you add the permission to your Manifest.xml file as well.

Cheers,
Adam

Thanks @adamjnav it works !!