aboutsummaryrefslogtreecommitdiffstats
path: root/WireGuard
diff options
context:
space:
mode:
authorJeroen Leenarts <jeroen.leenarts@gmail.com>2018-06-22 08:23:39 +0200
committerJeroen Leenarts <jeroen.leenarts@gmail.com>2018-06-22 08:23:39 +0200
commitf30f0d1a7bcdfa65058cfe0d0571c1add11953da (patch)
tree99c5ac92d36bac58fa9f0119ad817f56c24d7e11 /WireGuard
parentGenerate fat archive (diff)
downloadwireguard-apple-f30f0d1a7bcdfa65058cfe0d0571c1add11953da.tar.xz
wireguard-apple-f30f0d1a7bcdfa65058cfe0d0571c1add11953da.zip
Objective-C wrapper around WireguardGo.
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'WireGuard')
-rw-r--r--WireGuard/Info.plist8
-rw-r--r--WireGuard/WireGuard.entitlements18
2 files changed, 22 insertions, 4 deletions
diff --git a/WireGuard/Info.plist b/WireGuard/Info.plist
index 29b1ce2..685b9e2 100644
--- a/WireGuard/Info.plist
+++ b/WireGuard/Info.plist
@@ -27,10 +27,8 @@
<string>armv7</string>
</array>
<key>UIStatusBarStyle</key>
- <string>UIStatusBarStyleLightContent</string>
- <key>UIViewControllerBasedStatusBarAppearance</key>
- <false/>
- <key>UISupportedInterfaceOrientations</key>
+ <string>UIStatusBarStyleLightContent</string>
+ <key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
@@ -43,5 +41,7 @@
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
+ <key>UIViewControllerBasedStatusBarAppearance</key>
+ <false/>
</dict>
</plist>
diff --git a/WireGuard/WireGuard.entitlements b/WireGuard/WireGuard.entitlements
new file mode 100644
index 0000000..860ee4e
--- /dev/null
+++ b/WireGuard/WireGuard.entitlements
@@ -0,0 +1,18 @@
+<?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>
+ <key>com.apple.developer.networking.networkextension</key>
+ <array>
+ <string>packet-tunnel-provider</string>
+ </array>
+ <key>com.apple.security.application-groups</key>
+ <array>
+ <string>group.appforce1.com.wireguard.ios.WireGuard</string>
+ </array>
+ <key>keychain-access-groups</key>
+ <array>
+ <string>$(AppIdentifierPrefix)appforce1.com.wireguard.ios.WireGuard</string>
+ </array>
+</dict>
+</plist>