Twilio provides client-side Sync SDKs for browser-based web applications as well as native iOS and Android applications.
The latest version of the JavaScript SDK for Sync is made available on Twilio's CDN. Find the latest release in the Sync JavaScript Changelog. For reference, the JavaScript SDK client library can be used.
To include the SDK on your web page, simply add the following <script>
tag:
<script src="https://sdk.twilio.com/js/sync/releases/3.0.1/twilio-sync.min.js"></script>
The Twilio.Sync
namespace will then be available in the window scope of your JavaScript application.
You'll need to provision a token to your application to get started. See our guide Securing your Sync App for more information on token management, or look at one of our Quickstarts to get started from a basic example.
We support the latest major versions of:
Twilio Sync is also available from MavenCentral as separate artifacts for Kotlin and Java.
To install via Gradle, include the following in your Gradle build file:
1allprojects {2repositories {3mavenCentral()4}5}67dependencies {8implementation 'com.twilio:sync-android-kt:4.0.0'910// If you are using Java, use the following dependency instead11// implementation 'com.twilio:sync-android-java:4.0.0'12}
The iOS SDK is available through the CocoaPods and Swift Package Manager dependency managers, or by direct download.
We do not currently support the Carthage dependency manager.
To install the SDK using CocoaPods, add the following to your Podfile, changing MyTarget
to the name of your target:
1use_frameworks!2platform :iOS, '13.0'34target 'MyTarget' do5pod 'TwilioSyncClient', '~> 2.0'6end
To install the SDK with Swift Package Manager, add the following dependency to your project:
https://github.com/twilio/twilio-sync-ios
https://github.com/twilio/twilio-sync-ios
into the search field.We also offer the frameworks for direct download. There are several steps you'll need to complete to successfully add Sync to your project:
d9969a26757b642b6aee86849e22f9c8cd1c764d2275178dc0816625ac8ab170
05fe16e995c101c363f2cc39741841d2750ed30829022744b6164c2c0fe2589b
5290a6d0209e8783d8d9d80cbe6a1cd1247db4bd079249c606c714f70ddc7ca5
df90b90c6095c86233ca6a255423481e8610d84e674bfa0876e991bb95530f8d
.zip
files and locate the .xcframework
file(s) inside the directories created..xcframework
file(s) into your Xcode project, making sure they are dropped in the Embedded Binaries section of your project target's settings. Make sure you select Copy items if needed when prompted. If the framework file(s) do not appear under Embedded Binaries for your target, you will receive a Reason: image not found
error during compilation.libc++.tbd
as a dependency to your target in the Linked Frameworks section of the build settings if it is not already there.