瀏覽代碼

Update README.md

Yonah Forst 8 年之前
父節點
當前提交
2a674fe27d
共有 1 個檔案被更改,包括 5 行新增4 行删除
  1. 5
    4
      README.md

+ 5
- 4
README.md 查看文件

@@ -83,8 +83,8 @@ Promises resolve into one of these statuses
83 83
 | Return value | Notes|
84 84
 |---|---|
85 85
 |`authorized`| user has authorized this permission |
86
-|`denied`| user has denied permissions at least once. On iOS this means that the user will not be prompted again. Android users can be promted multiple times until they select 'Never ask me again'|
87
-|`restricted`| iOS only, it generally means that the user is not able to grant the indicated permission; either because it its not supported by the device or because it has been blocked by parental controls. |
86
+|`denied`| user has denied this permission at least once. On iOS this means that the user will not be prompted again. Android users can be promted multiple times until they select 'Never ask me again'|
87
+|`restricted`| *(iOS only)* user is not able to grant this permission, either because it's not supported by the device or because it has been blocked by parental controls. |
88 88
 |`undetermined`| user has not yet been prompted with a permission dialog |
89 89
 
90 90
 ###Supported permission types
@@ -106,7 +106,7 @@ Promises resolve into one of these statuses
106 106
 | Method Name | Arguments | Notes
107 107
 |---|---|---|
108 108
 | `getPermissionStatus` | `type` | - Returns a promise with the permission status. Note: for type `location`, iOS `AuthorizedAlways` and `AuthorizedWhenInUse` both return `authorized` |
109
-| `requestPermission` | `type` | - Accepts any permission type except `backgroundRefresh`. If the current status is `undetermined`, shows the permission dialog and returns a promise with the resulting status. Otherwise, immediately return a promise with the current status. Note: see below for special cases|
109
+| `requestPermission` | `type` | - Accepts any permission type except `backgroundRefresh`. If the current status is `undetermined`, shows the permission dialog and returns a promise with the resulting status. Otherwise, immediately return a promise with the current status. See iOS Notes for special cases|
110 110
 | `checkMultiplePermissions` | `[types]` | - Accepts an array of permission types and returns a promise with an object mapping permission types to statuses |
111 111
 | `getPermissionTypes` | *none* | - Returns an array of valid permission types  |
112 112
 | `openSettings` | *none* | - Switches the user to the settings page of your app (iOS 8.0 and later)  |
@@ -133,7 +133,8 @@ Permission type `bluetooth` represents the status of the `CBPeripheralManager`.
133 133
 
134 134
 ###Android Notes
135 135
 
136
-**IMPORTANT:** You need at least React-Native 0.29 for Android in order to make this plugin work as expected.
136
+Requires RN >= 0.29.0
137
+
137 138
 All required permissions also need to be included in the Manifest before they can be requested. Otherwise `requestPermission` will immediately return `denied`.
138 139
 
139 140
 Permissions are automatically accepted for targetSdkVersion < 23 but you can still use `getPermissionStatus` to check if the user has disabled them from Settings.