-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathPodfile
37 lines (31 loc) · 1 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
source 'https://github.com/CocoaPods/Specs.git'
def shared_pods
pod 'STHTTPRequest2', :git => '[email protected]:JohnWong/STHTTPRequest.git'
end
target :BusRider do
platform :ios, '12.0'
shared_pods
pod 'SVProgressHUD'
pod 'AHKActionSheet', :git => '[email protected]:JohnWong/AHKActionSheet.git'
pod 'UIViewAdditions'
pod 'Appirater'
pod 'SGNavigationProgress', :git => '[email protected]:JohnWong/SGNavigationProgress.git'
pod 'CBStoreHouseRefreshControl', :git => '[email protected]:JohnWong/CBStoreHouseRefreshControl.git'
pod 'Reveal-SDK', '~> 11', :configurations => ['Debug']
pod 'Crashlytics'
end
target :Today do
platform :ios, '12.0'
shared_pods
pod 'UIViewAdditions'
end
target :'BusRider WatchKit Extension' do
platform :watchos, '4.0'
shared_pods
end
post_install do |installer|
installer.pods_project.build_configurations.each do |config|
config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = "arm64"
end
end
inhibit_all_warnings!