-
Notifications
You must be signed in to change notification settings - Fork 244
/
Copy pathPLMediaStreamingKit.podspec
36 lines (30 loc) · 1.37 KB
/
PLMediaStreamingKit.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
#
# Be sure to run `pod lib lint PLCameraStreamingKit.podspec' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# Any lines starting with a # are optional, but encouraged
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "PLMediaStreamingKit"
s.version = "3.1.1"
s.summary = "Pili iOS media streaming framework via RTMP."
s.homepage = "https://github.com/pili-engineering/PLMediaStreamingKit"
s.license = 'Apache License, Version 2.0'
s.author = { "pili" => "pili@qiniu.com" }
s.source = { :http => "https://sdk-release.qnsdk.com/PLMediaStreamingKit-v3.1.1-iphoneos.zip"}
s.platform = :ios
s.ios.deployment_target = '8.0'
s.requires_arc = true
s.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
s.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
s.subspec "ex-HappyDNS" do |ss1|
ss1.vendored_frameworks = ['Pod/Library/PLMediaStreamingKit.framework']
end
s.subspec "HappyDNS" do |ss2|
ss2.vendored_frameworks = ['Pod/Library/HappyDNS.framework']
end
s.frameworks = ['UIKit', 'AVFoundation', 'CoreGraphics', 'CFNetwork', 'AudioToolbox', 'CoreMedia', 'VideoToolbox']
s.libraries = 'z', 'c++', 'icucore', 'sqlite3'
end