Twilio's Programmable Video iOS SDK lets you add real time voice and video to your native iOS applications.
Launch our Twilio Programmable Video live demo in less than 5 minutes. A high-quality, full-featured and open-source video collaboration application.
To get started with Twilio Video, you should download and run a QuickStart Application.
You can use the iOS Simulator that comes with Xcode to do your testing, but local video will not be shared since the Simulator cannot access a camera. If you have an iOS device, you can now run apps from Xcode on your device without a paid developer account.
The QuickStart repository contains additional examples. These examples demonstrate the usage of new features and also let you build more complex applications.
To add Video to your app, follow the Getting Started Guide
The Twilio Video iOS SDK dynamic framework can be installed using Swift Package Manager, CocoaPods or manually, as you prefer.
You can add Programmable Video for iOS by adding the https://github.com/twilio/twilio-video-ios
repository as a Swift Package.
In your Build Settings, you will also need to modify Other Linker Flags
to include -ObjC
.
There is a known issue with consuming binary frameworks distributed via Swift Package Manager. The current workaround to this issue is to add a Run Script Phase
to the Build Phases
of your Xcode project. This Run Script Phase
should come after the Embed Frameworks
build phase. This new Run Script Phase
should contain the following code:
1find "${CODESIGNING_FOLDER_PATH}" -name '*.framework' -print0 | while read -d $'\0' framework2do3codesign --force --deep --sign "${EXPANDED_CODE_SIGN_IDENTITY}" --preserve-metadata=identifier,entitlements --timestamp=none "${framework}"4done5
1source 'https://github.com/CocoaPods/Specs'23platform :ios, '12.2'45target 'TARGET_NAME' do6pod 'TwilioVideo', '~> 5'7end
Then run pod install
to install the dependencies to your project.
TwilioVideo.xcframework
is distributed as a dynamic iOS framework that you can drag and drop into your existing projects.
View all Video iOS Releases here or just download the latest Video dynamic framework here.
Once you've downloaded and unpacked the XCFramework, navigate to your Xcode project's General settings page. Drag and drop TwilioVideo.xcframework
onto the Frameworks, Libraries, and Embedded Content section. Ensure that "Copy items if needed" is checked and press Finish. Ensure that "Embed & Sign" is selected.
In your Build Settings, you will also need to modify Other Linker Flags
to include -ObjC
.
To allow a connection to a Room to be persisted while an application is running in the background, you must select the Audio, AirPlay, and Picture in Picture
background mode from the Capabilities
project settings page.
You can add Audio Processors for iOS by adding the https://github.com/twilio/twilio-audio-processors-ios
repository as a Swift Package.
In your Build Settings, you will also need to modify Other Linker Flags
to include -ObjC
.
1source 'https://github.com/CocoaPods/Specs'23platform :ios, '12.2'45target 'TARGET_NAME' do6pod 'TwilioAudioProcessors', '~> 5'7end
Then run pod install
to install the dependencies to your project.
TwilioAudioProcessors.xcframework
is distributed as a dynamic iOS framework that you can drag and drop into your existing projects.
View all Audio Processors iOS Releases here or just download the latest Audio Processors dynamic framework here.
Once you've downloaded and unpacked the XCFramework, navigate to your Xcode project's General settings page. Drag and drop TwilioAudioProcessors.xcframework
onto the Frameworks, Libraries, and Embedded Content section. Ensure that "Copy items if needed" is checked and press Finish. Ensure that "Embed & Sign" is selected.
In your Build Settings, you will also need to modify Other Linker Flags
to include -ObjC
.
SDK Version | Minimum Xcode Requirement | Minimum iOS Version | Supported Architectures | Supported Devices |
---|---|---|---|---|
5.x | Xcode 13.0 | iOS 12.2 | arm64, x86_64 | iPhone 5s and later, iPad (5th generation) and later, iPad mini (2nd generation) and later. |
4.x | Xcode 12.5 | iOS 9.0 ** | armv7, arm64, i386, x86_64 | iPhone 4s and later **, iPad 2 and later, iPad mini (1st generation) and later. |
iOS 11.0 | arm64, x86_64 | iPhone 5s and later *, iPad (5th generation) and later, iPad Air and later, iPad mini 2 and later | ||
3.x | Xcode 11.0 | iOS 11.0 | arm64 ***, x86_64 | iPhone 5s and later *, iPad (5th generation) and later, iPad Air and later, iPad mini 2 and later |
* Dual SIM enabled iPhones (XS, XS Max, XR and later) are supported, but not when two SIMs are installed and enabled. See Chromium issue #10966 for more information.
** Build time support is available for iOS 9.x and 10.x. Run time support is available on iOS 11.0 and above.
*** Arm64 simulators are not supported.
We love feedback and questions, especially those with helpful debugging information so we can diagnose and respond quickly. When submitting issues or support tickets, it would be great if you add the following:
After gathering the above information, you can get help in a few ways:
For issues related to the Twilio Video iOS SDK itself:
For issues related to the Twilio Video iOS Quickstarts:
To enable debug level logging, add the following code in your application:
TwilioVideoSDK.setLogLevel(.debug)
Our 5.0 releases are now "Generally Available" (GA) and represent our latest releases and adds support for:
Our 4.x releases will now only receive critical bug fixes. Support for the 4.x releases will cease as of February 14, 2023. Refer to our 5.x migration guide for migrating your applications from 4.x to 5.x.
Our 4.0 releases are now "Generally Available" (GA) and represent our latest releases and adds support for:
Our 3.x releases will now only receive critical bug fixes. Support for the 3.x releases will cease as of December 4, 2021. Refer to our 4.x migration guide for migrating your applications from 3.x to 4.x.
Our 3.0 releases are "Generally Available" (GA) and provide the following features:
Our 2.x releases will now only receive critical bug fixes. Support for 2.x releases ended on January 10, 2020. Refer to our 3.x migration guide for migrating your applications from 2.x to 3.x.
Our 2.0 releases are "Generally Available" (GA) and provide the following features:
Our 1.x releases are no longer supported. Refer to our 2.x migration guide for migrating your applications from 1.x to 2.x and our 3.x migration guide for migrating your applications from 2.x to 3.x.