-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPodfile
More file actions
57 lines (45 loc) · 809 Bytes
/
Podfile
File metadata and controls
57 lines (45 loc) · 809 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
platform :ios, '10.0'
inhibit_all_warnings!
##
def rx_swift
pod 'RxSwift', '~> 4.3.1'
end
##
def rx_cocoa
pod 'RxCocoa', '~> 4.3.1'
end
##
def rx_gesture
pod 'RxGesture'
end
##
def rx_datasource
pod 'RxDataSources', '~> 3.0'
end
##
def common_pods
rx_swift
rx_cocoa
rx_gesture
rx_datasource
end
####
target 'Common' do
use_frameworks!
workspace 'MVVMCExample'
project 'Common/Common.xcodeproj'
common_pods
end
target 'MVVMCExample' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
common_pods
target 'MVVMCExampleTests' do
inherit! :search_paths
# Pods for testing
end
target 'MVVMCExampleUITests' do
inherit! :search_paths
# Pods for testing
end
end