fix(mas) WebRTC UDP connections

UDP connections (for WebRTC) require both the server and the client entitlement,
as an app with only the client entitlement enabled can send, but not receive, data.

See https://developer.apple.com/documentation/bundleresources/entitlements/com_apple_security_network_client

Signed-off-by: Christoph Settgast <csett86@web.de>
This commit is contained in:
Christoph Settgast 2021-05-02 17:16:51 +02:00 committed by Saúl Ibarra Corretgé
parent 5bf3ca2385
commit 6a20f8e30d
1 changed files with 2 additions and 0 deletions

View File

@ -6,6 +6,8 @@
<true/>
<key>com.apple.security.network.client</key>
<true/>
<key>com.apple.security.network.server</key>
<true/>
<key>com.apple.security.device.camera</key>
<true/>
<key>com.apple.security.device.audio-input</key>