To make sure your app is ready for Android 11 please visit this page.
Twilio's Programmable Video Android SDK lets you add real time voice and video to your native Android 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 the QuickStart application.
The QuickStart repository contains additional examples. These examples demonstrate the usage of new features and also help you build more complex applications.
To add Video to your app, follow the Getting Started Guide
The Android Video SDK is distributed through Maven Central.
To install the Android Video SDK, ensure the following configuration is in your build.gradle file:
1allprojects {2repositories {3mavenCentral()4}5}67// The Video library resides on Maven Central8implementation 'com.twilio:video-android:$version'910android {11compileOptions {12sourceCompatibility 1.813targetCompatibility 1.814}15}
Add the following lines to your proguard-project.txt file.
1-keep class tvi.webrtc.** { *; }2-keep class com.twilio.video.** { *; }3-keepattributes InnerClasses
The Android SDK supports Android API level 21 and higher. It is built for armeabi-v7a, arm64-v8a, x86, and x86_64 architectures.