DEV Community

Emmanuel Oreoluwa
Emmanuel Oreoluwa

Posted on

Permission Camera Roll Error React Native

Am trying to access camera roll on my react native app and it not giving back feedback

This my code

onImageUpload = async () => {
const {status: cameraRollPerm} = await PermissionsAndroid.askAsync(
PermissionsAndroid.PERMISSIONS.CAMERA_ROLL,
try{
if (cameraRollPerm === 'granted') {
let pickerResult = await ImagePicker.lauchImageAsync({
allowsEditing: true,
aspect:[4,3]
});
console.log(
'ready to upload... pickerResult json:'+ JSON.stringify(pickerResult)
);

I tried

await PermissionsAndroid.request(
PermissionsAndroid.PERMISSIONS.CAMERA,

Latest comments (2)

Collapse
 
codemouse92 profile image
Jason C. McDonald

Please wrap your code in triple backticks (`), three on the line above the code, and three below. Otherwise, this isn't readable. :(

Collapse
 
aore profile image
Emmanuel Oreoluwa

Done