-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPodfile
More file actions
38 lines (32 loc) · 747 Bytes
/
Podfile
File metadata and controls
38 lines (32 loc) · 747 Bytes
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
platform :ios, '10.0'
use_frameworks!
project 'CoolClothes.xcodeproj'
def core_pods
pod 'RxSwift'
pod 'RxCocoa'
pod 'RxDataSources'
pod 'APIKit'
pod 'OHHTTPStubs/Swift'
pod 'SDWebImage'
pod 'RangeSeekSlider'
end
target 'CoolClothes' do
core_pods
# Enable DEBUG flag in Swift for SwiftTweaks
end
target 'CoolClothesTests' do
core_pods
end
target 'CoolClothesIntegrationTests' do
core_pods
pod 'RxBlocking'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
if target.name == 'RangeSeekSlider'
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '3.2'
end
end
end
end