I want to use ZoomVideoSDK via cocoa pods

I want to use ZoomVideoSDK via cocoa pods as pod ‘ZoomVideoSDK’ but it will install ScreenShare framework as well and that creating 91 compiling errors.

Can I have a pod which only install video SDK and not ScreenShare framework of zoom ?

Any update on this please?

Hi @qazi , which of these screen share methods do you currently have implemented?

Thanks,
Gianni

Would love to have cocoapods support as well.
As a work around I download the package, add it to a private repo and use that as a submodule.

Please add support.

Hi @qazi , @rokgregoric ,

Thanks for using Video SDK. Yes, we do have Cocoapod support and you may find it here: Specs/ZoomVideoSDK.podspec.json at master · CocoaPods/Specs · GitHub

And you may install our Video SDK via Cocoapod like this:

source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '9.0'

target 'ZoomVideoSample' do
  use_frameworks!
  pod 'ZoomVideoSDK/ZoomVideoSDK'

end

target 'ZoomVideoSDKScreenShare' do
  use_frameworks!
  pod 'ZoomVideoSDK/ZoomVideoSDKScreenShare'
end

Hope this helps!

2 Likes

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.