forked from BrikerMan/BMPlayer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BMPlayer.podspec
27 lines (21 loc) · 1.02 KB
/
BMPlayer.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
Pod::Spec.new do |s|
s.name = "BMPlayer"
s.version = "0.5.0"
s.summary = "Video Player Using Swift, based on AVPlayer"
s.description = <<-DESC
Video Player Using Swift, based on AVPlayer, support for the horizontal screen, vertical screen, the upper and lower slide to adjust the volume, the screen brightness, or so slide to adjust the playback progress.
DESC
s.homepage = "https://github.com/BrikerMan/BMPlayer"
s.license = 'MIT'
s.author = { "Eliyar Eziz" => "[email protected]" }
s.source = { :git => "https://github.com/BrikerMan/BMPlayer.git", :tag => s.version.to_s }
s.social_media_url = 'http://weibo.com/536445669'
s.ios.deployment_target = '8.0'
s.source_files = 'BMPlayer/Classes/**/*'
s.resource_bundles = {
'BMPlayer' => ['BMPlayer/Assets/*.png']
}
s.frameworks = 'UIKit', 'AVFoundation'
s.dependency 'SnapKit', '~> 3.0'
s.dependency 'NVActivityIndicatorView'
end