-
Notifications
You must be signed in to change notification settings - Fork 2
/
UCloudRtcSdk.podspec
35 lines (27 loc) · 1.36 KB
/
UCloudRtcSdk.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
#
# Be sure to run `pod spec lint UCloudRtcSdk.podspec' to ensure this is a
# valid spec and to remove all comments including this before submitting the spec.
#
# To learn more about Podspec attributes see https://guides.cocoapods.org/syntax/podspec.html
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
#
Pod::Spec.new do |spec|
spec.name = "UCloudRtcSdk"
spec.version = "1.9.2.9"
spec.summary = "Real-time audio and video calling with UCloudRtcSdk"
spec.description = <<-DESC
By installing the URTC SDK, you can quickly build multi-person audio and video calls, one-to-many or many-to-many real-time interaction
DESC
spec.homepage = "https://github.com/ucloud/urtc-ios-demo"
spec.license = { :type => 'MIT', :file => 'LICENSE' }
spec.author = { "ucloudyj" => "[email protected]" }
spec.platform = :ios
spec.ios.deployment_target = "9.0"
spec.source = { "http": "http://urtcsdk.cn-bj.ufileos.com/UCloudRtcSdk_iOS_1.9.2.9.zip" }
spec.xcconfig = {
'VALID_ARCHS' => 'arm64 armv7 x86_64'
}
spec.frameworks = "CFNetwork", "Security", "OpenGLES", "GLKit", "VideoToolbox", "Metal", "MetalKit"
spec.libraries = "icucore", "c++", "bz2", "z", "iconv"
spec.vendored_frameworks = 'UCloudRtcSdk_iOS_1.9.2.9/*.framework'
end