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,