forked from noreasonprojects/ModernAVPlayer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
ModernAVPlayer.podspec
29 lines (25 loc) · 1.08 KB
/
ModernAVPlayer.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
Pod::Spec.new do |s|
s.name = 'ModernAVPlayer'
s.version = '1.7.3'
s.summary = 'ModernAVPlayer is an audio persistence AVPlayer wrapper'
s.description = <<-DESC
ModernAVPlayer is an ongoing project that aims to create a more usable audio video player with readable status and network persistence option.
DESC
s.homepage = 'https://github.com/raphrel/ModernAVPlayer'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'raphael ankierman' => 'raphrel@gmail.com' }
s.source = { :git => 'https://github.com/raphrel/ModernAVPlayer.git', :tag => s.version.to_s }
s.default_subspec = 'Core'
s.ios.deployment_target = '10.0'
s.tvos.deployment_target = '10.0'
s.swift_version = '5.0'
s.subspec 'Core' do |core|
core.source_files = 'Sources/Core/**/*'
end
s.subspec 'RxSwift' do |ss|
ss.dependency 'ModernAVPlayer/Core'
ss.dependency "RxSwift", "~> 5.0"
ss.dependency "RxCocoa", "~> 5.0"
ss.source_files = 'Sources/RxModernAVPlayer/**/*'
end
end