You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'The permission to access the photo library has been denied and cannot be requested again. Please enable it in your device settings if you wish to access photos from your library.',
'The permission to access the photo library has been denied and cannot be requested again. Please enable it in your device settings if you wish to access photos from your library.',
33
+
[
34
+
{
35
+
text: 'Cancel',
36
+
style: 'cancel',
37
+
},
38
+
{
39
+
text: 'Open Settings',
40
+
onPress: ()=>{
41
+
// Open app settings
42
+
Linking.openSettings();
43
+
},
44
+
},
45
+
],
46
+
{cancelable: false},
47
+
);
64
48
}else{
65
-
constapiLevel=awaitgetApiLevel();
66
-
constpermission=
67
-
apiLevel>=33
68
-
? PERMISSIONS.ANDROID.READ_MEDIA_IMAGES
69
-
: PERMISSIONS.ANDROID.READ_EXTERNAL_STORAGE;
70
-
71
-
request(permission).then(asyncresult=>{
72
-
if(RESULTS.BLOCKED===result){
73
-
Alert.alert(
74
-
'Permission Denied',
75
-
'The permission to access the photo library has been denied and cannot be requested again. Please enable it in your device settings if you wish to access photos from your library.',
0 commit comments