-
Notifications
You must be signed in to change notification settings - Fork 1
/
Dioptra.podspec
55 lines (45 loc) · 1.46 KB
/
Dioptra.podspec
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
Pod::Spec.new do |s|
s.name = 'Dioptra'
s.version = '5.1.15'
s.summary = 'Video player RX based library'
s.homepage = 'https://github.com/netcosports/Dioptra'
s.author = {
'Sergei Mikhan' => 'sergei@netcosports.com'
}
s.source = { :git => 'https://github.com/netcosports/Dioptra.git', :tag => s.version.to_s }
s.license = { :type => "MIT" }
s.ios.deployment_target = '9.0'
s.default_subspec = 'Core'
s.swift_versions = ['5.0', '5.1']
s.static_framework = true
s.subspec 'Core' do |sub|
sub.source_files = 'Sources/Core/**/*.swift'
sub.dependency 'RxSwift', '~> 6'
sub.dependency 'RxCocoa', '~> 6'
sub.dependency 'RxGesture', '~> 4'
end
s.subspec 'AV' do |sub|
sub.source_files = 'Sources/AV/**/*.swift'
sub.dependency 'Dioptra/Core'
sub.dependency 'RxReachability'
end
s.subspec 'DM' do |sub|
sub.source_files = 'Sources/DM/**/*.swift'
sub.dependency 'DailymotionPlayerSDK'
sub.dependency 'Dioptra/Core'
sub.dependency 'RxReachability'
end
s.subspec 'YT' do |sub|
sub.source_files = 'Sources/YT/**/*.swift'
sub.dependency 'youtube-ios-player-helper'
sub.dependency 'Dioptra/Core'
sub.dependency 'RxReachability'
end
#FIXME: need to put this into separated pod
s.subspec 'Presentation' do |sub|
sub.source_files = 'Sources/Presentation/**/*.swift'
sub.dependency 'RxSwift', '~> 5'
sub.dependency 'RxCocoa', '~> 5'
sub.dependency 'RxGesture', '~> 3'
end
end