This repository contains releases for the Twilio Programmable Voice for iOS SDK. These releases can be installed using Swift Package Manager, CocoaPods, Carthage or manually, as you prefer.
You can add Programmable Voice for iOS by adding the https://github.com/twilio/twilio-voice-ios
repository as a Swift Package.
In your Build Settings, you will also need to modify Other Linker Flags
to include -ObjC
.
As of the latest release of Xcode (currently 12.4), 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:
find "${CODESIGNING_FOLDER_PATH}" -name '*.framework' -print0 | while read -d $'\0' framework
do
codesign --force --deep --sign "${EXPANDED_CODE_SIGN_IDENTITY}" --preserve-metadata=identifier,entitlements --timestamp=none "${framework}"
done
It's easy to install the Voice framework if you manage your dependencies using CocoaPods. Simply add the following to your Podfile
:
source 'https://github.com/cocoapods/specs'
target 'TARGET_NAME' do
use_frameworks!
pod 'TwilioVoice', '~> 6.2.0'
end
Then run pod install --verbose
to install the dependencies to your project.
We support integration using Carthage binary frameworks. You can add the Voice iOS SDK by adding the following line to your Cartfile
:
binary "https://raw.githubusercontent.com/twilio/twilio-voice-ios/Releases/twilio-voice-ios.json"
Then run carthage bootstrap --use-xcframeworks
(or carthage update --use-xcframeworks
if you are updating your SDKs)
On your application target's General settings tab, in the Frameworks, Libraries, and Embedded Content
section, drag and drop TwilioVoice.xcframework
from the Carthage/Build folder on disk.
See manual installation.
Please file any issues you find here on Github. Please ensure that you are not sharing any Personally Identifiable Information(PII) or sensitive account information (API keys, credentials, etc.) when reporting an issue.
For general inquiries related to the Voice SDK you can file a support ticket.
Twilio Programmable Voice for iOS is distributed under TWILIO-TOS.