-
Notifications
You must be signed in to change notification settings - Fork 407
/
KRVideoPlayer.podspec
36 lines (30 loc) · 1.16 KB
/
KRVideoPlayer.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
#
# Be sure to run `pod lib lint KRVideoPlayer.podspec' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# Any lines starting with a # are optional, but encouraged
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "KRVideoPlayer"
s.version = "1.0.1"
s.summary = "A simple video player like weico"
s.description = <<-DESC
A video player like weico.
![screenshot](kr_player.gif)
DESC
s.homepage = "https://github.com/36Kr-Mobile/KRVideoPlayer"
s.license = 'MIT'
s.author = { "aidenluo" => "luoqi@36kr.com" }
s.source = { :git => "https://github.com/36Kr-Mobile/KRVideoPlayer.git", :tag => s.version.to_s }
s.social_media_url = 'http://weibo.com/1840543654/profile'
s.platform = :ios, '6.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
s.resource_bundles = {
'KRVideoPlayer' => ['Pod/Assets/*.png']
}
s.public_header_files = 'Pod/Classes/**/*.h'
s.frameworks = 'UIKit', 'MediaPlayer'
end