瀏覽代碼

Update readme

Jonathan Kim 7 年之前
父節點
當前提交
d26ceaf112
共有 1 個文件被更改,包括 4 次插入0 次删除
  1. 4
    0
      README.md

+ 4
- 0
README.md 查看文件

@@ -13,6 +13,7 @@ The current supported permissions are:
13 13
 - Push Notifications *(iOS only)*
14 14
 - Background Refresh *(iOS only)*
15 15
 - Speech Recognition *(iOS only)*
16
+- Core Motion *(iOS only)*
16 17
 - Call Phone *(Android Only)*
17 18
 - Read/Receive SMS *(Android only)*
18 19
 
@@ -121,6 +122,7 @@ Promises resolve into one of these statuses
121 122
 |`notification`| ✔️ | ❌ |
122 123
 |`backgroundRefresh`| ✔️ | ❌ |
123 124
 |`speechRecognition`| ✔️ | ❌ |
125
+|`motion`| ✔️ | ❌ |
124 126
 |`storage`| ❌️ | ✔ |
125 127
 |`callPhone`| ❌️ | ✔ |
126 128
 |`readSms`| ❌️ | ✔ |
@@ -217,6 +219,8 @@ So before submitting your app to the `AppStore`, make sure that in your `Info.pl
217 219
 <string>Some description</string>
218 220
 <key>NSSpeechRecognitionUsageDescription</key>
219 221
 <string>Some description</string>
222
+<key>NSMotionUsageDescription</key>
223
+<string>Some description</string>
220 224
 
221 225
 ```
222 226