Quellcode durchsuchen

shouldShowRequestPermissionRationale is not exposed

Mathieu Acthernoene vor 7 Jahren
Ursprung
Commit
883df49822
1 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
  1. 2
    2
      index.android.js

+ 2
- 2
index.android.js Datei anzeigen

@@ -1,6 +1,6 @@
1 1
 // @flow
2 2
 
3
-import { AsyncStorage, PermissionsAndroid } from 'react-native'
3
+import { AsyncStorage, NativeModules, PermissionsAndroid } from 'react-native'
4 4
 
5 5
 const permissionTypes = {
6 6
   location: PermissionsAndroid.PERMISSIONS.ACCESS_FINE_LOCATION,
@@ -52,7 +52,7 @@ class ReactNativePermissions {
52 52
 
53 53
       return getDidAskOnce(permission).then(didAsk => {
54 54
         if (didAsk) {
55
-          return PermissionsAndroid.shouldShowRequestPermissionRationale(
55
+          return NativeModules.PermissionsAndroid.shouldShowRequestPermissionRationale(
56 56
             androidPermission,
57 57
           ).then(shouldShow => (shouldShow ? 'denied' : 'restricted'))
58 58
         }