Files
umbrix/ios/Runner/Runner.entitlements

25 lines
716 B
Plaintext
Raw Normal View History

2023-10-16 20:43:42 +03:30
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
2024-01-15 12:59:45 +03:30
<key>aps-environment</key>
<string>development</string>
2023-10-17 03:15:15 +03:30
<key>com.apple.developer.networking.networkextension</key>
<array>
2024-01-10 19:31:45 +03:30
<string>app-proxy-provider</string>
<string>dns-proxy</string>
2023-10-17 03:15:15 +03:30
<string>packet-tunnel-provider</string>
</array>
2023-11-07 13:52:09 +01:00
<key>com.apple.security.app-sandbox</key>
<true/>
2023-10-16 20:43:42 +03:30
<key>com.apple.security.application-groups</key>
<array>
<string>group.$(BASE_BUNDLE_IDENTIFIER)</string>
</array>
2023-11-07 13:52:09 +01:00
<key>com.apple.security.network.client</key>
<true/>
<key>com.apple.security.network.server</key>
<true/>
2023-10-16 20:43:42 +03:30
</dict>
</plist>