mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-13 22:00:47 +01:00
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:
parent
39b934ba2e
commit
5dcadff258
1 changed files with 4 additions and 0 deletions
|
@ -25,5 +25,9 @@
|
||||||
<string>${MACOSX_DEPLOYMENT_TARGET}</string>
|
<string>${MACOSX_DEPLOYMENT_TARGET}</string>
|
||||||
<key>NSPrincipalClass</key>
|
<key>NSPrincipalClass</key>
|
||||||
<string>NSApplication</string>
|
<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>
|
</dict>
|
||||||
</plist>
|
</plist>
|
Loading…
Reference in a new issue