-
Notifications
You must be signed in to change notification settings - Fork 12
/
Podfile
58 lines (52 loc) · 1.57 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
inhibit_all_warnings!
use_frameworks!
platform :ios, '11.0'
target :'Confirmed VPN' do
pod 'ReachabilitySwift', '4.1.0'
pod 'SwiftMessages', '6.0.0'
pod 'PromiseKit', '6.7.0'
pod 'PromiseKit/Alamofire', '6.7.0'
pod 'SwiftyStoreKit', '0.13.1'
pod 'CNPPopupController'
pod 'LGSideMenuController', '2.1.1'
pod 'Alamofire', '4.5.1'
pod 'SkyFloatingLabelTextField', '~> 3.0'
pod 'TextFieldEffects'
pod 'KeychainAccess', '3.1.0'
pod 'Segmentio'
pod 'NVActivityIndicatorView', '4.7.0'
pod 'CocoaLumberjack', '3.4.2'
pod 'PopupDialog', '~> 0.9'
pod 'TunnelKit', '1.4.0'
pod 'OpenSSL-Apple', '1.1.0i.2'
end
target :'Confirmed Tunnels' do
pod 'SwiftyUserDefaults', '3.0.0'
pod 'PromiseKit', '6.7.0'
pod 'PromiseKit/Alamofire', '6.7.0'
pod 'CocoaLumberjack', '3.4.2'
pod 'KeychainAccess', '3.1.0'
pod 'Alamofire', '4.5.1'
pod 'SwiftyStoreKit', '0.13.1'
pod 'ReachabilitySwift', '4.1.0'
pod 'TunnelKit', '1.4.0'
pod 'OpenSSL-Apple', '1.1.0i.2'
end
target :'Today' do
pod 'PromiseKit', '6.7.0'
pod 'PromiseKit/Alamofire', '6.7.0'
pod 'SwiftyStoreKit', '0.13.1'
pod 'Alamofire', '4.5.1'
pod 'KeychainAccess', '3.1.0'
pod 'CocoaLumberjack', '3.4.2'
pod 'ReachabilitySwift', '4.1.0'
pod 'TunnelKit', '1.4.0'
pod 'OpenSSL-Apple', '1.1.0i.2'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '9.0'
end
end
end