0

I am working on Video Chat application using Twilio using Objective - C.

2 years back, we have implemented video chat using Twilio Frameworks like Twilio Conversation Client & Twilio Common Frameworks using Manual process.

While developing we have downloaded the frameworks using

https://www.twilio.com/docs/api/video/ios

But now it is replaced with TwilioVideo framework.

So, is there any links to get latest versions of Twilio Common & Twilio Conversation client frameworks through cocoapods or from github.

I searched them in Cocoapods but not able to find it.

I referred below link

https://github.com/twilio/cocoapod-specs/issues/80

I tried installing using cocoapods like below

source 'https://github.com/CocoaPods/Specs.git'

xcodeproj 'Project'
workspace 'Project'

inhibit_all_warnings!
use_frameworks!

target :"Project" do
    platform :ios, '8.1'
    pod 'AFNetworking', '2.6.3'
    pod 'SocketRocket', '0.5'
    pod 'TwilioSDK', '~>1.2.6'
    pod 'TwilioConversationsClient', '~>0.25.1'
    pod 'TwilioCommon', '~> 0.3.4'
end

But it says Unknown command: TwilioCommon and Unknown command: TwilioConversationsClient

So, Is there any links for that framework latest versions or else I need to start migrate to TwilioVideo framework of Twilio? Any valuable suggestions are appreciated...!

Thanks All,

4

1 回答 1

1

我已经使用 cocoapods 成功安装了最新版本,如下所示

source 'https://github.com/CocoaPods/Specs.git'
source 'https://github.com/twilio/cocoapod-specs'

xcodeproj 'XXXXXXX'
workspace 'XXXXXXX'

inhibit_all_warnings!
use_frameworks!

target :"XXXXXXX" do
    platform :ios, '8.1'
    pod 'AFNetworking', '2.6.3'
    pod 'SocketRocket', '0.5'
    pod 'TwilioSDK', '~>1.2.6'
    pod 'TwilioConversationsClient'
    pod 'TwilioCommon'
end

谢谢,

于 2018-02-19T14:19:12.987 回答