-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathPodfile
46 lines (35 loc) · 1.08 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
# Uncomment this line to define a global platform for your project
platform :ios, '10.0'
target 'TCAT' do
# Comment this line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
inhibit_all_warnings!
# Pods for TCAT
# Location
pod 'GoogleMaps', '~> 2.6'
pod 'GooglePlaces', '~> 2.6'
# Networking + Data
pod 'Alamofire', '~> 4.7'
pod 'TRON', '~> 4.1.2'
pod 'SwiftyJSON', '~> 4.0'
# Analytics
pod 'Fabric'
pod 'Crashlytics'
pod 'SwiftRegister', :git => 'https://github.com/cuappdev/register-client-ios.git', :branch => 'master'
# UI Frameworks
pod 'DZNEmptyDataSet'
pod 'NotificationBannerSwift', :git=> 'https://github.com/mattbarker016/NotificationBanner.git', :branch => 'mattbarker016/statusBannerFix'
pod 'Pulley'
pod 'Presentation'
pod 'SnapKit'
# Other
pod 'Fuzzywuzzy_swift', :git=> 'https://github.com/AAAstorga/Fuzzywuzzy_swift.git'
target 'TCATTests' do
inherit! :search_paths
# Pods for testing
end
target 'TCATUITests' do
inherit! :search_paths
# Pods for testing
end
end