-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPodfile
executable file
·57 lines (47 loc) · 1.61 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
source 'https://cdn.cocoapods.org/'
use_frameworks!
inhibit_all_warnings!
project 'ReactantUI.xcodeproj'
def shared
pod 'RxSwift', '~> 5.0'
pod 'RxCocoa', '~> 5.0'
pod 'RxDataSources', '~> 4.0'
pod 'RxOptional', '~> 4.0'
pod 'SnapKit', '~> 5.0'
pod 'Kingfisher', '~> 5.0'
pod 'Reactant', :path => 'Dependencies/Reactant'
pod 'Reactant/TableView', :path => 'Dependencies/Reactant'
pod 'Reactant/FallbackSafeAreaInsets', :path => 'Dependencies/Reactant'
end
abstract_target 'LiveUI' do
shared
target 'LiveUI-iOS' do
platform :ios, '10.0'
target 'LiveUI-iOSTests' do
pod 'Quick', '~> 2.0'
pod 'Nimble', '~> 7.0'
pod 'RxNimble'
pod 'RxTest'
pod 'iOSSnapshotTestCase'
end
end
target 'LiveUI-tvOS' do
platform :tvos, '10.0'
end
end
target 'Example' do
platform :ios, '10.0'
shared
#pod 'Reactant/All-iOS', :path => '../Reactant' # :git => 'https://github.com/Brightify/Reactant.git', :branch => 'master'
# pod 'Reactant/TableView', :git => 'https://github.com/Brightify/Reactant.git', :branch => 'master'
# pod 'ReactantUI', :path => './'
# pod 'ReactantLiveUI', :path => './', :configuration => 'Debug'
end
target 'Example-tvOS' do
platform :tvos, '10.0'
shared
# pod 'Reactant', :git => 'https://github.com/Brightify/Reactant.git', :branch => 'master'
# pod 'Reactant/TableView', :git => 'https://github.com/Brightify/Reactant.git', :branch => 'master'
# pod 'ReactantUI', :path => './'
# pod 'ReactantLiveUI', :path => './', :configuration => 'Debug'
end