-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathYouboraAVPlayerAdapter.podspec
46 lines (32 loc) · 1.4 KB
/
YouboraAVPlayerAdapter.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
37
38
39
40
41
42
43
44
45
46
Pod::Spec.new do |s|
s.name = 'YouboraAVPlayerAdapter'
s.version = '6.7.4'
# Metadata
s.summary = "Adapter to use YouboraLib on AVPlayer"
s.description = "<<-DESC
YouboraAVPlayerAdapter is an adapter used
for AVPlayer.
DESC"
s.homepage = "https://documentation.npaw.com/"
s.license = { :type => "MIT", :file => "LICENSE.md" }
s.author = { "NPAW" => "[email protected]" }
# Platforms
s.ios.deployment_target = "12.0"
s.tvos.deployment_target = "12.0"
s.osx.deployment_target = "10.14"
# Platforms
s.swift_version = "5.3"
# Source Location
s.source = { :git => 'https://bitbucket.org/npaw/avplayer-adapter-ios.git', :tag => s.version }
# Source files
s.source_files = 'Sources/YouboraAVPlayerAdapter'
# s.ios.source_files = 'Sources/YouboraAVPlayerAdapter/exclude/YouboraAVPlayerAdapter.h'
# s.tvos.source_files = 'Sources/YouboraAVPlayerAdapter/exclude/YouboraAVPlayerAdapter.h'
# s.osx.source_files = 'Sources/YouboraAVPlayerAdapter/exclude/YouboraAVPlayerAdapter.h'
# s.public_header_files = "Sources/YouboraAVPlayerAdapter/**/*.h"
# Project settings
s.requires_arc = true
s.pod_target_xcconfig = { 'GCC_PREPROCESSOR_DEFINITIONS' => '$(inherited) YOUBORAADAPTER_VERSION=' + s.version.to_s }
# Dependency
s.dependency 'YouboraLib', '~> 6.6'
end