-
Notifications
You must be signed in to change notification settings - Fork 13
/
Podfile
43 lines (33 loc) · 938 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
35
36
37
38
39
40
41
42
43
use_frameworks!
def utils
pod 'SurfUtils', :subspecs => ['StringAttributes', 'KeyboardPresentable', 'UIStyle', 'XibView', 'ItemsScrollManager'], :git => "https://github.com/surfstudio/iOS-Utils.git", :tag => '13.1.0'
end
def diffKit
pod 'DifferenceKit', '1.3.0'
end
def nuke
pod 'Nuke', :git => "https://github.com/kean/Nuke.git", :tag => "10.11.2"
end
abstract_target 'Targets' do
nuke
target 'ReactiveChat_iOS' do
platform :ios, '13.0'
utils
end
target 'ReactiveDataDisplayManagerExample_iOS' do
platform :ios, '11.0'
utils
diffKit
target 'ReactiveDataDisplayManagerExampleUITests'
end
target 'ReactiveDataDisplayManagerExample_tvOS' do
platform :tvos, '13.0'
end
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11'
end
end
end