forked from blizzard-op/VideoPlayerKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
VideoPlayerKit.podspec
24 lines (22 loc) · 1.02 KB
/
VideoPlayerKit.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
Pod::Spec.new do |s|
s.name = 'VideoPlayerKit'
s.version = '1.0.0'
s.platform = :ios, '5.0'
s.license = { :type => 'MIT'}
s.summary = 'A custom iOS video player with controls, progress bar, and airplay all set up.'
s.homepage = 'https://github.com/ign/VideoPlayerKit'
s.author = { 'Aung Thar' => '[email protected]',
'Grant Bartone' => '[email protected]',
'Alex Ivlev' => '[email protected]',
'Brad Taylor' => '[email protected]' }
s.source = { :git => 'https://github.com/ign/VideoPlayerKit.git', :tag => '1.0.0' }
s.description = 'We know how hard making a custom video player is. That is why ' \
'we created VideoPlayerKit. Using VideoPlayerKit is easy. All ' \
'controls, progress bar, and airplay are already set up to make ' \
'everyone life easier.'
s.source_files = 'Code/*.{h,m}'
s.resources = 'Assets/*.png'
s.dependency 'ShareThis', '1.0.0'
s.frameworks = 'AudioToolbox', 'CoreMedia', 'AVFoundation', 'MediaPlayer'
s.requires_arc = true
end