-
Notifications
You must be signed in to change notification settings - Fork 372
Expand file tree
/
Copy pathVKVideoPlayer.podspec
More file actions
29 lines (23 loc) · 1.04 KB
/
VKVideoPlayer.podspec
File metadata and controls
29 lines (23 loc) · 1.04 KB
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
Pod::Spec.new do |s|
s.name = "VKVideoPlayer"
s.version = "0.1.1"
s.summary = "VKVideoPlayer is Http Live Streaming player that is able to display subtitles."
s.homepage = "https://github.com/viki-org/VKVideoPlayer"
s.license = 'Apache License, Version 2.0'
s.author = { "Keisuke Matsuo" => "matzo@viki.com" }
s.source = { :git => "https://github.com/viki-org/VKVideoPlayer.git", :tag => s.version.to_s }
s.platform = :ios, '5.0'
s.ios.deployment_target = '5.0'
s.requires_arc = true
s.source_files = 'Classes/ios/*.{h,m}'
s.resources = 'Assets/*.png' , 'Classes/ios/*.{xib}'
s.ios.exclude_files = 'Classes/osx'
s.osx.exclude_files = 'Classes/ios'
s.public_header_files = 'Classes/**/*.h'
s.frameworks = 'QuartzCore', 'MediaPlayer', 'AVFoundation'
s.dependency 'DTCoreText', '~> 1.6.11'
s.dependency 'AFNetworking', '1.3.3'
s.dependency 'CocoaLumberjack', '~> 1.7.0'
s.dependency 'VKFoundation', '0.1.1'
I18n.enforce_available_locales = false
end