Fix macOS demo privacy crash.

The macOS demo's Info.plist doesn't contains camera and microphone usage description, which will cause demo crash when starting call.

Bug: none
Change-Id: Ie85b0087e6aa6e768a8e6740fffe0b95891b20dd
Reviewed-on: https://webrtc-review.googlesource.com/c/116703
Reviewed-by: Kári Helgason <kthelgason@webrtc.org>
Commit-Queue: Kári Helgason <kthelgason@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#26188}
This commit is contained in:
Piasy 2019-01-10 00:18:12 +08:00 committed by Commit Bot
parent 39b934ba2e
commit 5dcadff258

View file

@ -25,5 +25,9 @@
<string>${MACOSX_DEPLOYMENT_TARGET}</string>
<key>NSPrincipalClass</key>
<string>NSApplication</string>
<key>NSCameraUsageDescription</key>
<string>Camera access needed for video calling</string>
<key>NSMicrophoneUsageDescription</key>
<string>Microphone access needed for video calling</string>
</dict>
</plist>