-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
34 lines (27 loc) · 821 Bytes
/
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
# Uncomment the next line to define a global platform for your project
platform :ios, '11.0'
target 'BikeStationsFinder' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
# ignore all warnings from all pods
inhibit_all_warnings!
# Pods for BikeStationsFinder
pod 'Alamofire', '5.4'
pod 'SnapKit', '5.0.0'
pod 'AMDots', '1.0.2'
pod 'SwiftLint', '0.43.1'
pod 'Periphery', '2.8.1'
target 'BikeStationsFinderTests' do
inherit! :search_paths
# Pods for testing
end
end
post_install do |pi|
pi.pods_project.targets.each do |t|
t.build_configurations.each do |bc|
if bc.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] == '8.0'
bc.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '9.0'
end
end
end
end