-
Notifications
You must be signed in to change notification settings - Fork 3
/
Veeplay.podspec
35 lines (29 loc) · 1.63 KB
/
Veeplay.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
Pod::Spec.new do |s|
s.name = "Veeplay"
s.version = "3.2.14"
s.summary = "Veeplay Media Player - Crossplatform media player with video ads support"
s.homepage = "http://veeplay.com"
s.license = { :type => "Commercial", :text => "Contact [email protected]" }
s.author = { "Veeplay" => "[email protected]" }
s.source = { :git => "https://github.com/veeplay/ios-media-player.git", :tag => s.version.to_s }
s.platforms = { :ios => "13.0", :tvos => "13.0" }
s.requires_arc = true
s.documentation_url = 'http://veeplay.github.io/ios-media-player'
s.source_files = "Headers/*.h"
s.resources = "Assets/*.bundle"
s.public_header_files = "Headers/*.h"
s.preserve_paths = "Docs/*"
s.library = "z"
s.ios.vendored_libraries = "libVeeplay.a"
s.tvos.vendored_libraries = "libVeeplayTvOS.a"
s.ios.frameworks = "AVFoundation", "MediaPlayer", "CoreMedia", "AVKit", "SystemConfiguration", "SafariServices", "WebKit"
s.tvos.frameworks = "AVFoundation", "MediaPlayer", "CoreMedia", "AVKit", "SystemConfiguration"
s.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64', 'EXCLUDED_ARCHS[sdk=appletvsimulator*]' => 'arm64' }
s.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64', 'EXCLUDED_ARCHS[sdk=appletvsimulator*]' => 'arm64' }
s.ios.dependency "KAProgressLabel", "~> 3.0"
s.ios.dependency "Reachability"
s.dependency "XCDYouTubeKit", "~> 2.5"
s.dependency "YTVimeoExtractor", "~> 1.2"
s.dependency "KVOController", "~> 1.2.0"
s.dependency "PureLayout", "~> 3.1"
end