-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathVideoPlayerKit.podspec
More file actions
23 lines (21 loc) · 1018 Bytes
/
VideoPlayerKit.podspec
File metadata and controls
23 lines (21 loc) · 1018 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = 'VideoPlayerKit'
s.version = '1.0.0'
s.platform = :ios, '5.0'
s.license = { :type => 'BSD'}
s.summary = 'An custom iOS video player with controls, progress bar, and airplay set up'
s.homepage = 'https://github.com/SamuraiZack/VideoPlayerKit'
s.author = { 'Aung Thar' => 'samuraizack@gmail.com',
'Grant Bartone' => 'gbartone@ign.com',
'Alex Ivlev' => 'aivlev@ign.com',
'Brad Taylor' => 'brtaylor@ign.com' }
s.source = { :git => 'https://github.com/SamuraiZack/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.frameworks = 'AudioToolbox', 'CoreMedia', 'AVFoundation', 'MediaPlayer'
s.requires_arc = true
end