forked from ride-austin/ios-rider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
72 lines (65 loc) · 2.04 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
platform :ios, '10.0'
use_frameworks!
inhibit_all_warnings!
source 'https://github.com/CocoaPods/Specs.git'
abstract_target 'rider_pods' do
# pod 'MRCountryPicker', :git => 'https://github.com/tedgonzalez/MRCountryPicker.git' #swift 3
# pod 'TrueTime' #swift 3
# pod 'PermissionScope', :git => 'https://github.com/tedgonzalez/PermissionScope.git', :commit => 'daf7f7ff1f6c885ad30e7c185779d72fa9cb7b13' # swift 3
pod 'MRCountryPicker', :git => 'https://github.com/tedgonzalez/MRCountryPicker.git', :branch => 'fixed-canada-issue' #swift 4
pod 'TrueTime', :git => 'https://github.com/instacart/TrueTime.swift.git', :tag => '5.0.0'
pod 'FBSDKCoreKit'
pod 'FBSDKShareKit'
pod 'FBSDKLoginKit'
pod 'Mantle'
pod 'GoogleMaps', '~> 3.2.0'
pod 'GooglePlaces', '~> 3.2.0'
pod 'Stripe'
pod 'SVProgressHUD'
pod 'AFNetworking'
pod 'Fabric'
pod 'Crashlytics'
pod 'Firebase/Analytics'
pod 'Firebase/Core'
pod 'Firebase/InAppMessagingDisplay'
pod 'Firebase/Messaging'
pod 'SAMKeychain'
pod 'SDWebImage'
pod 'Shimmer'
pod 'TTTAttributedLabel'
pod 'ZLPeoplePickerViewController'
pod 'KVOController'
pod 'XLForm'
pod 'OHHTTPStubs'
pod 'BugfenderSDK/ObjC'
pod 'Appirater'
#pod 'STLocationRequest'
pod 'BFRImageViewer'
pod 'Branch'
pod 'RxCocoa'
pod 'Pulley'
pod 'URITemplate'
#only on compile time
pod 'SwiftGen'
pod 'SwiftLint'
target 'RideAustin'
target 'RideAustinTest'
target 'RideAustinTest-Automation' do
pod 'SWHttpTrafficRecorder'
end
target 'RA Fresh Test Automation' do
pod 'SWHttpTrafficRecorder'
end
target 'RideAustinTests' do
inherit! :complete
end
end
post_install do |installer|
installer.pods_project.targets.each do |target|
if ['PermissionScope','MRCountryPicker'].include? target.name
target.build_configurations.each do |config|
config.build_settings['SWIFT_SWIFT3_OBJC_INFERENCE'] = 'On'
end
end
end
end