This repository has been archived by the owner on Jun 24, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
zoom-us-ios-sdk-dev-pod.podspec
54 lines (41 loc) · 2.06 KB
/
zoom-us-ios-sdk-dev-pod.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#
# Be sure to run `pod spec lint ZoomSDK.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://docs.cocoapods.org/specification.html
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
#
# Zoom iOS SDK w/Simulator libraries (x86_64)
Pod::Spec.new do |spec|
spec.name = "ZoomSDK"
spec.version = "5.0.24433.0616"
spec.summary = "Original framework for Zoom.us iOS SDK with x86_64 for simulator"
spec.homepage = "https://github.com/zoom/zoom-sdk-ios"
spec.license = "MIT"
spec.author = { "Mokriya" => "info@mokriya.com" }
spec.swift_version = "5.0"
spec.ios.deployment_target = "9.0"
spec.source = { :git => "https://github.com/mokriya-org/zoom-us-ios-sdk-dev-pod.git", :tag => "v#{spec.version}" }
# spec.libraries = "z", "c++", "sqlite3"
# spec.frameworks = "Foundation", "UIKit", "VideoToolbox", "CoreBluetooth", "ReplayKit", "CoreMotion"
spec.default_subspec = 'Core'
spec.requires_arc = true
spec.default_subspec = 'Core'
spec.requires_arc = true
spec.subspec 'Core' do |subspec|
subspec.ios.source_files = "MobileRTC.framework/Headers/**/*.{h,m}"
subspec.ios.public_header_files = "MobileRTC.framework/Headers/**/*.{h,m}"
subspec.ios.vendored_frameworks = "MobileRTC.framework"
subspec.ios.resource = "MobileRTCResources.bundle"
end
# Uncomment when this library will be support Swift 5 or higher
# spec.subspec 'ShareScreen' do |subspec|
# subspec.ios.dependency 'Core'
# subspec.ios.source_files = "MobileRTCScreenShare.framework/Headers/**/*.{h,m}"
# subspec.ios.public_header_files = "MobileRTCScreenShare.framework/Headers/**/*.{h,m}"
# subspec.ios.vendored_frameworks = "MobileRTCScreenShare.framework"
# end
# spec.requires_arc = true
# spec.xcconfig = { "HEADER_SEARCH_PATHS" => "$(SDKROOT)/usr/include/libxml2" }
# spec.dependency "JSONKit", "~> 1.4"
end