-
Notifications
You must be signed in to change notification settings - Fork 85
/
Podfile
73 lines (63 loc) · 1.73 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
inhibit_all_warnings!
use_frameworks!
platform :ios, '13.0'
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings.delete 'IPHONEOS_DEPLOYMENT_TARGET'
end
end
end
target :'Lockdown' do
plugin 'cocoapods-acknowledgements', :settings_bundle => true
pod 'AwesomeSpotlightView'
pod 'RQShineLabel'
pod 'NicoProgress'
pod 'ReachabilitySwift', '4.3.1'
pod 'SwiftMessages', '6.0.0'
pod 'PromiseKit'
pod 'SwiftyStoreKit', '0.13.1'
pod 'KeychainAccess'
pod 'CocoaLumberjack'
pod 'PopupDialog', '~> 0.9'
#Linter
pod 'SwiftLint'
end
target :'LockdownTunnel' do
pod 'PromiseKit'
pod 'KeychainAccess'
pod 'SwiftyStoreKit', '0.13.1'
pod 'ReachabilitySwift', '4.3.1'
end
target :'Lockdown VPN Widget' do
pod 'PromiseKit'
pod 'SwiftyStoreKit', '0.13.1'
pod 'KeychainAccess'
pod 'CocoaLumberjack'
pod 'ReachabilitySwift', '4.3.1'
end
target :'Lockdown Firewall Widget' do
pod 'PromiseKit'
pod 'SwiftyStoreKit', '0.13.1'
pod 'KeychainAccess'
pod 'CocoaLumberjack'
pod 'ReachabilitySwift', '4.3.1'
end
target :'LockdownIntents' do
pod 'PromiseKit'
pod 'SwiftyStoreKit', '0.13.1'
pod 'KeychainAccess'
pod 'CocoaLumberjack'
pod 'ReachabilitySwift', '4.3.1'
end
target :'LockdownTests' do
# see https://github.com/pointfreeco/swift-snapshot-testing/pull/308
pod 'SnapshotTesting', :git => 'https://github.com/pointfreeco/swift-snapshot-testing.git', :commit => '8e9f685'
end
# post_install do |installer|
# installer.pods_project.targets.each do |target|
# target.build_configurations.each do |config|
# config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11.0'
# end
# end
# end