|
@@ -183,14 +183,14 @@ The current supported permissions are:
|
183
|
183
|
### iOS Notes
|
184
|
184
|
|
185
|
185
|
* Permission type `bluetooth` represents the status of the
|
186
|
|
- `CBPeripheralManager`. Don't use this if only need `CBCentralManager`
|
|
186
|
+ `CBPeripheralManager`. Don't use this if only need `CBCentralManager`.
|
187
|
187
|
* Permission type `location` accepts a second parameter for `request()` and
|
188
|
188
|
`check()`; the second parameter is a string, either `always` or `whenInUse`
|
189
|
189
|
(default).
|
190
|
190
|
* Permission type `notification` accepts a second parameter for `request()`. The
|
191
|
191
|
second parameter is an array with the desired alert types. Any combination of
|
192
|
192
|
`alert`, `badge` and `sound` (default requests all three).
|
193
|
|
-* If you are not requesting mediaLibrary then you can remove MediaPlayer.framework from the xcode project
|
|
193
|
+* If you are not requesting mediaLibrary then you can remove MediaPlayer.framework from the xcode project.
|
194
|
194
|
|
195
|
195
|
```js
|
196
|
196
|
// example
|
|
@@ -221,7 +221,7 @@ Contacts Usage Description`.
|
221
|
221
|
|
222
|
222
|
#### App Store submission disclaimer
|
223
|
223
|
|
224
|
|
-If you need to submit you application to the AppStore, you need to add to your
|
|
224
|
+If you need to submit your application to the AppStore, you need to add to your
|
225
|
225
|
`Info.plist` all `*UsageDescription` keys with a string value explaining to the
|
226
|
226
|
user how the app uses this data. **Even if you don't use them**.
|
227
|
227
|
|
|
@@ -313,4 +313,4 @@ android {
|
313
|
313
|
#### Q: iOS - App crashes when I change permission from settings
|
314
|
314
|
|
315
|
315
|
> A: This is normal. iOS restarts your app when your privacy settings change.
|
316
|
|
-> Just google "iOS crash permission change"
|
|
316
|
+> Just google "iOS crash permission change".
|