-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathPodfile
50 lines (45 loc) · 1.57 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
platform :ios, '9.0'
use_frameworks!
inhibit_all_warnings!
xcodeproj 'FuelMeDriver/RideDriver.xcodeproj'
source 'https://github.com/ride-austin/ios-podspecs.git'
source 'https://github.com/CocoaPods/Specs.git'
abstract_target 'driver_pods' do
pod 'BugfenderSDK/ObjC'
pod 'Crashlytics'
pod 'CZPhotoPickerController'
pod 'Fabric'
pod 'FBSDKCoreKit'
pod 'FBSDKLoginKit'
pod 'FBSDKShareKit'
pod 'Firebase/Analytics'
pod 'Firebase/Core'
pod 'Firebase/InAppMessagingDisplay'
pod 'Firebase/Messaging'
pod 'Firebase/RemoteConfig'
pod 'GoogleMaps'
pod 'GooglePlaces'
pod 'LGRefreshView', '~> 1'
pod 'Mantle'
pod 'NSString+RemoveEmoji'
pod 'REFormattedNumberField'
pod 'RestKit'
pod 'RxCocoa'
pod 'SAMKeychain'
pod 'SDWebImage'
pod 'SinchVerification'
pod 'SVProgressHUD'
pod 'TTTAttributedLabel'
pod 'UIActivityIndicator-for-SDWebImage', :git => 'https://github.com/tedgonzalez/UIActivityIndicator-for-SDWebImage.git'
pod 'XLForm'
#swift
# pod 'MRCountryPicker', :git => 'https://github.com/tedgonzalez/MRCountryPicker.git' #swift 3
# pod 'TrueTime', '~> 4.1.5' #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', :commit => '8aadebabe2590d6ab295c390df5bbc109b346348' #swift 4
#for testing
pod 'OHHTTPStubs'
target 'RideDriverTest - Enterprise'
target 'DriverUnitTests'
target 'DriverUnitTestsSwift'
end