mobile-ios/Podfile

42 lines
924 B
Text
Raw Normal View History

2020-05-08 17:49:14 +10:00
# Uncomment the next line to define a global platform for your project
platform :ios, '10.0'
workspace 'CovidSafe.xcworkspace'
source 'https://github.com/CocoaPods/Specs.git'
source 'https://github.com/wogaa/Specs.git'
target 'CovidSafe' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
# Pods for CovidSafe
pod 'Alamofire'
pod 'KeychainSwift'
pod 'lottie-ios'
2020-06-19 17:43:33 +10:00
pod 'FlagKit'
2020-09-14 11:23:11 +10:00
pod 'ReachabilitySwift'
2020-05-08 17:49:14 +10:00
end
target 'CovidSafe-staging' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
# Pods for CovidSafe
pod 'Alamofire'
pod 'KeychainSwift'
pod 'lottie-ios'
2020-06-19 17:43:33 +10:00
pod 'FlagKit'
2020-08-18 10:52:17 +10:00
pod 'ReachabilitySwift'
2020-05-08 17:49:14 +10:00
end
2021-05-12 17:39:38 -07:00
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '10.0'
end
end
end