-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathPodfile
43 lines (40 loc) · 1.24 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
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '12.0'
use_frameworks!
target 'WSDOT' do
pod 'Google-Mobile-Ads-SDK'
pod 'Firebase/Analytics'
pod 'Firebase/Messaging'
pod 'Firebase/Performance'
pod 'Firebase/Crashlytics'
pod 'GoogleMaps', '~> 3.10.0'
pod 'RealmSwift', '~> 10.52.2'
pod 'Alamofire', '~> 5.10.2'
pod 'SwiftyJSON', '~> 5.0.2'
pod 'SDWebImage', '~> 5.20.0'
pod 'EasyTipView', '~> 2.1.0'
pod 'NotificationBannerSwift', '3.2.0'
end
target 'WSDOTTests' do
pod 'Google-Mobile-Ads-SDK'
pod 'Firebase/Analytics'
pod 'Firebase/Messaging'
pod 'Firebase/Performance'
pod 'Firebase/Crashlytics'
pod 'GoogleMaps', '~> 3.10.0'
pod 'RealmSwift', '~> 10.52.2'
pod 'Alamofire', '~> 5.10.2'
pod 'SwiftyJSON', '~> 5.0.2'
pod 'SDWebImage', '~> 5.20.0'
pod 'EasyTipView', '~> 2.1.0'
pod 'NotificationBannerSwift', '3.2.0'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '5.0'
config.build_settings.delete 'IPHONEOS_DEPLOYMENT_TARGET'
config.build_settings['EXCLUDED_ARCHS[sdk=iphonesimulator*]'] = 'arm64'
end
end
end