-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPodfile
29 lines (26 loc) · 865 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
platform :ios, '15.0'
use_frameworks!
inhibit_all_warnings!
# Work around issue #10580: https://github.com/CocoaPods/CocoaPods/issues/10580
source 'https://github.com/CocoaPods/Specs.git'
target 'TukTuk' do
pod 'EasyAnimation'
pod 'CollectionViewSlantedLayout'
pod 'Amplitude-iOS'
pod 'GoogleAPIClientForREST/Drive'
pod 'GoogleSignIn', '6.2.4'
pod 'PopupDialog'
pod 'SwiftyGif'
pod 'TOPasscodeViewController'
pod 'BiometricAuthentication'
end
# ref https://stackoverflow.com/questions/63056454/xcode-12-deployment-target-warnings-when-use-cocoapods
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
if config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'].to_f < 9.0
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '9.0'
end
end
end
end