-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPodfile
More file actions
37 lines (31 loc) · 913 Bytes
/
Copy pathPodfile
File metadata and controls
37 lines (31 loc) · 913 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
install! 'cocoapods', :deterministic_uuids => false
source 'https://github.com/CocoaPods/Specs.git'
# Uncomment this line to define a global platform for your project
platform :ios, '11.0'
# ignore all warnings from all pods
inhibit_all_warnings!
# 모든 target 에서 사용할 공용 dependency 선언
def shared_pods
use_frameworks!
# RX Core
pod 'RxSwift', '~> 4.4.2'
pod 'RxCocoa', '~> 4.4.2'
pod 'RxSwiftExt', '~> 3.4.0'
pod 'RxDataSources', '~> 3.1.0'
pod 'SnapKit', '~> 4.2.0'
pod 'Cosmos'
end
# 각 target 별 dependency 선언
target 'SearchAppstore' do
shared_pods
end
target 'SearchAppstoreTests' do
end
post_install do |installer|
installer.pods_project.targets.each do |target|
swift_version = '4.2'
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = swift_version
end
end
end