mirror of
https://github.com/confirmedcode/Lockdown-iOS.git
synced 2025-12-21 12:14:02 +01:00
55 lines
1.3 KiB
Ruby
55 lines
1.3 KiB
Ruby
inhibit_all_warnings!
|
|
use_frameworks!
|
|
|
|
platform :ios, '11.0'
|
|
|
|
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', '3.5.2'
|
|
pod 'PopupDialog', '~> 0.9'
|
|
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', '3.5.2'
|
|
pod 'ReachabilitySwift', '4.3.1'
|
|
end
|
|
|
|
target :'Lockdown Firewall Widget' do
|
|
pod 'PromiseKit'
|
|
pod 'SwiftyStoreKit', '0.13.1'
|
|
pod 'KeychainAccess'
|
|
pod 'CocoaLumberjack', '3.5.2'
|
|
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
|