-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
95 lines (60 loc) · 1.86 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
# Uncomment this line to define a global platform for your project
use_frameworks!
def shared
pod 'RealmSwift'
pod 'ObjectMapper', '~> 2.2'
pod 'SwiftyBeaver'
end
def default_pods
platform :ios, '10.0'
pod 'DrawerController', '~> 3.1'
pod 'Firebase/Core', '~> 4.1.0'
pod 'Firebase/Messaging', '~> 4.1.0'
pod 'Firebase/RemoteConfig', '~> 4.1.0'
pod 'Google/SignIn'
pod 'zipzap', '~> 8.0.4'
pod 'KDCircularProgress', '~> 1.2'
pod 'SwiftValidator', :git => 'https://github.com/jpotts18/SwiftValidator.git', :branch => 'swift-3'
pod 'AlamofireNetworkActivityIndicator', '~> 2.0'
pod 'Kingfisher', '~> 3.0'
pod 'StatefulViewController', '~> 3.0'
pod 'Fabric'
pod 'Crashlytics', '~> 3.8'
pod 'Pulley', :git => 'https://github.com/52inc/Pulley.git', :branch => 'swift-3.1'
pod 'LocationPickerViewController'
pod 'ChameleonFramework/Swift', :git => 'https://github.com/ViccAlexander/Chameleon.git'
pod 'PolyglotLocalization'
pod 'Permission/Notifications'
pod 'Permission/Location'
pod 'SSZipArchive'
pod 'Alamofire', '~> 4.4'
pod 'SwiftyJSON'
pod 'RxSwift', '~> 3.0'
pod 'RxCocoa', '~> 3.0'
end
target 'SASAbus' do
default_pods
shared
end
target 'TripNotification' do
default_pods
shared
end
target 'SASAbus Watch Extension' do
platform :watchos, '4.0'
shared
end
post_install do |installer|
installer.pods_project.targets.each do |target|
if target.name == 'SASAbus Watch Extension'
target.build_configurations.each do |config|
config.build_settings['ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES'] = 'YES'
end
end
if target.name == 'SASAbus'
target.build_configurations.each do |config|
config.build_settings['ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES'] = 'NO'
end
end
end
end