-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathAliPlayerSDK_iOS_ARTP.podspec
29 lines (25 loc) · 1.13 KB
/
AliPlayerSDK_iOS_ARTP.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
Pod::Spec.new do |s|
s.name = "AliPlayerSDK_iOS_ARTP"
s.version = "5.3.0"
s.summary = "AliPlayerSDK_iOS_ARTP."
s.description = <<-DESC
It's an SDK for aliyun video vodplay, which implement by Objective-C.
DESC
s.homepage = "https://github.com/aliyunvideo/AliPlayerSDK"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "aliyunvideo" => "[email protected]"}
s.platform = :ios
s.platform = :ios, "8.0"
s.source = { :git => "https://github.com/aliyunvideo/AliPlayerSDK.git", :tag => "#{s.version}" }
s.pod_target_xcconfig = {
'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64'
}
s.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
s.subspec 'AliPlayerSDK' do |playerSDK|
playerSDK.vendored_frameworks = 'artpSource.framework'
playerSDK.frameworks = 'MediaPlayer','CoreGraphics','QuartzCore','CoreVideo','OpenGLES','AVFoundation','CoreMedia','VideoToolbox','AudioToolbox'
end
#s.frameworks = 'VideoToolBox','MediaPlayer'
#s.libraries = 'z'
s.requires_arc = true
end