-
Notifications
You must be signed in to change notification settings - Fork 1
/
Podfile
34 lines (31 loc) · 898 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
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '10.0'
use_frameworks!
def shared_pods
pod 'RealmSwift', '2.10.2'
pod 'SnapKit', '~> 4.0'
pod 'RxSwift', '~> 3.0'
pod 'DynamicColor', '4.0.1'
end
target 'EasySell' do
shared_pods
pod 'IQKeyboardManagerSwift', '~> 5.0.0'
pod 'SVProgressHUD', '2.2.2'
pod "RxRealm", '0.7.2'
pod "RxRealmDataSources", '0.2.4'
pod 'CHIPageControl', '~> 0.1.3'
pod 'GrowingTextView', '~> 0.5.3'
pod 'Fusuma'
pod 'MGSwipeTableCell'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
if ["RxSwift", "RxCocoa", "SwiftyAttributes", "Result", "Fusuma"].include? target.name
config.build_settings['SWIFT_VERSION'] = '3.0'
else
config.build_settings['SWIFT_VERSION'] = '4.0'
end
end
end
end