twilio / video-quickstart-ios

Twilio Video Quickstart for iOS
https://www.twilio.com/docs/api/video
MIT License
460 stars 177 forks source link

Why latest version pod not installing? #527

Closed mouli457 closed 4 years ago

mouli457 commented 4 years ago

Screenshot 2020-07-21 at 6 09 55 PM I am using pod 'TwilioVideo' for installing TwilioVideo,but it installing version(2.10.2).I am using Xcode 11.2.1.Please tell me solution.Thanks in advance.

ceaglest commented 4 years ago

Hey @mouli457,

Twilio Video 3.5 is being referenced in your Podfile. We recommend that you use the latest version but you must raise your deployment target to iOS 11.0 to do so. Checkout the Podfile in this repo for an example supporting version 3.5.

// ... snip

  pod 'TwilioVideo', '~> 3.5'

  target 'ARKitExample' do
    platform :ios, '11.0'
    project 'ARKitExample.xcproject'
  end

// ...

Let me know if you were able to get 3.5 working.

Thanks, Chris

ceaglest commented 4 years ago

I'm assuming you got past this based upon the other issue that you filed. If you're still having trouble please re-open and I can assist further.