Explain NSMicrophoneUsageDescription requirement.

This commit is contained in:
Ryan Heise 2020-09-07 13:29:31 +10:00
parent d14edc77fc
commit b09db4a943
1 changed files with 7 additions and 0 deletions

View File

@ -188,6 +188,13 @@ If you need access to the player's AudioSession ID, you can listen to `AudioPlay
### iOS ### iOS
Regardless of whether your app uses the microphone, Apple will require you to add the following key to your `Info.plist` file. The message will simply be ignored if your app doesn't use the microphone:
```xml
<key>NSMicrophoneUsageDescription</key>
<string>... explain why you use (or don't use) the microphone ...</string>
```
If you wish to connect to non-HTTPS URLS, add the following to your `Info.plist` file: If you wish to connect to non-HTTPS URLS, add the following to your `Info.plist` file:
```xml ```xml