-
Notifications
You must be signed in to change notification settings - Fork 1
/
Podfile
32 lines (27 loc) · 795 Bytes
/
Podfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
platform :ios, '12.0'
use_frameworks!
target 'IVPNClient' do
pod 'TunnelKit', '~> 3.5.0'
pod 'KeychainAccess', '~> 3.2.0'
pod 'SwiftyStoreKit', '~> 0.16.1'
pod 'JGProgressHUD', '~> 2.0.3'
pod 'ActiveLabel', '~> 1.1.0'
pod 'ReachabilitySwift', '~> 5.0.0'
pod 'FloatingPanel', '~> 1.7.2'
pod 'SnapKit', '~> 5.0.1'
end
target 'openvpn-tunnel-provider' do
pod 'TunnelKit', '~> 3.5.0'
pod 'KeychainAccess', '~> 3.2.0'
end
target 'wireguard-tunnel-provider' do
pod 'KeychainAccess', '~> 3.2.0'
end
target 'today-extension' do
pod 'KeychainAccess', '~> 3.2.0'
end
post_install do |installer|
installer.pods_project.build_configurations.each do |config|
config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = "arm64"
end
end