-
Notifications
You must be signed in to change notification settings - Fork 1
/
AVPlayerDNAPlugin.podspec
26 lines (26 loc) · 1.16 KB
/
AVPlayerDNAPlugin.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
Pod::Spec.new do |s|
s.name = 'AVPlayerDNAPlugin'
s.version = '1.1.25'
s.swift_version = '5.5'
s.summary = 'Streamroot Distributed Network Architecture AVPlayer plugins, a new way to deliver large-scale OTT video'
s.homepage = 'https://www.streamroot.io/'
s.author = { 'Name' => '[email protected]' }
s.license = {
:type => 'Copyright',
:text => 'Copyright 2021 Streamroot. See the terms of service at https://www.streamroot.io/'
}
s.platform = :ios
s.source ={ :git => 'https://github.com/streamroot/avplayer-dna-plugin.git', :tag => "#{s.version}"}
s.source_files = 'PlayerDNAPlugin/Classes/*.swift'
s.ios.deployment_target = '10.2'
s.tvos.deployment_target = '10.2'
s.dependency 'StreamrootSDK', '~> 3.25.1'
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'
}
end