-
Notifications
You must be signed in to change notification settings - Fork 36
/
QNRTCKit-iOS.podspec
34 lines (27 loc) · 1.21 KB
/
QNRTCKit-iOS.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
#
# Be sure to run `pod lib lint QNRTCKit.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'QNRTCKit-iOS'
s.version = '6.5.0'
s.summary = 'Qiniu RTC SDK for iOS.'
s.homepage = 'https://github.com/pili-engineering/QNRTC-iOS'
s.license = 'Apache License, Version 2.0'
s.author = { "pili" => "pili-coresdk@qiniu.com" }
s.source = { :http => "https://sdk-release.qnsdk.com/QNRTCKit-iphoneos-v6.5.0.zip"}
s.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
s.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
s.platform = :ios
s.ios.deployment_target = '12.0'
s.requires_arc = true
s.frameworks = ['UIKit', 'AVFoundation', 'CoreGraphics', 'CFNetwork', 'AudioToolbox', 'CoreMedia', 'VideoToolbox']
s.default_subspec = "Core"
s.subspec "Core" do |core|
core.vendored_framework = ['Pod/iphoneos/*.framework']
end
s.libraries = "z", "bz2", "iconv"
end