6.0 Changelog: Twilio Video Android
Warning
The Twilio Programmable Video SDKs use Semantic Versioning. Twilio supports version N-1 for 12 months after the first GA release of version N. We recommend you upgrade to the latest version as soon as possible to avoid any breaking changes. Version 7.x is the latest Video Android version.
Support for 6.x will cease according to the 12-month support policy. Check this guide when planning your migration to 7.x.
For older versions (5.x and below), documentation has been removed according to our documentation retention policy.
- Programmable Video Android SDK 6.4.1
- Programmable Video Android SDK KTX 6.4.1
- Fixed a crash when
maxTracksorrenderDimensionsis set and a sink is added for aRemoteVideoTrack.
- As of 6.0.0 of the SDK, hardware video encoding doesn't publish all of the three simulcast layers when VP8 simulcast is enabled on Android. This affects Video Content Preferences from working properly for subscribing video participants since the feature requires all three simulcast layers to switch between. Our team is working on a fix for this, but the feature does work when VP8 simulcast is used to publish video from participants using the JavaScript or iOS SDKs.
- Video Content Preferences might prefer larger video than needed when device orientations are mismatched. For example, if a participant in landscape mode publishes video, then the subscribing participant must also be in landscape mode in order for the correctly sized simulcast layers to be selected. The same is true for the portrait orientation.
- When the publisher is publishing video at 720p with VP8 simulcast enabled and the subscriber varies their hints between 180p, 360p, and 720p, sometimes the subscriber receives larger video than expected.
- Releases prior to 7.7.1 do not support Android 15 with a 16k page size.
| ABI | APK Size Impact |
|---|---|
| x86 | 5.6MB |
| x86_64 | 5.5MB |
| armeabi-v7a | 4.2MB |
| arm64-v8a | 5.2MB |
| universal | 19.9MB |
- Programmable Video Android SDK 6.4.0
- Programmable Video Android SDK KTX 6.4.0
This release contains a significant update to the Bandwidth Profile API. It allows for more efficient use of bandwidth and CPU in multi-party applications. In addition, it provides developers with more dynamic control over which video tracks are delivered to the client and the preferred video resolution of the tracks. These capabilities are provided via the Client Track Switch Off Control and Video Content Preferences settings.
Existing Bandwidth Profile settings will continue to function as before, however, we recommend developers update their Bandwidth Profile settings to make use of these new capabilities at their earliest convenience.
- This feature allows subscribers to control whether the media for a
RemoteVideoTrackis received or not. Client Track Switch off Control has two modes of operation:- auto (default): The SDK determines whether tracks should be switched off based on renderer attachment, view visibility, and application lifecycle.
- manual: The application requests that individual tracks be switched off or on using the
RemoteVideoTrack.switchOff()andRemoteVideoTrack.switchOn()methods.
Note If your application previously set the maxTracks property to limit the number of tracks visible, you should instead use clientTrackSwitchOffControl to take advantage of this feature.
- This feature allows subscribers to specify preferences about the media that they receive on a
RemoteVideoTrack. Video content preferences has two modes of operation:- auto (default): The SDK specifies content preferences based on video view size. A
RemoteVideoTrackrendered by aVideoVieworVideoTextureViewwith larger dimensions will get a higher quality video compared to aRemoteVideoTrackrendered by aVideoVieworVideoTextureViewwith smaller dimensions. - manual: The application specifies the content preferences for individual tracks using
RemoteVideoTrack.setContentPreferences().
- auto (default): The SDK specifies content preferences based on video view size. A
Note If your application previously set the renderDimensions property, you should instead use contentPreferencesMode to take advantage of this feature.
Both of these features are available in Group Rooms and are enabled by default if your application specifies BandwidthProfileOptions during connect. The auto mode will be enabled if your application passes either a VideoTextureView or a VideoView to RemoteVideoTrack.addSink(VideoSink). However, if your application implements a custom VideoSink and it is passed to RemoteVideoTrack.addSink(VideoSink), then the track will remain switched on and video preferences are ignored as long as there is a custom VideoSink remaining in the track.
1BandwidthProfileOptions bandwidthProfileOptions = new BandwidthProfileOptions(2new VideoBandwidthProfileOptions.3Builder()4// Use "auto" default. Be sure to remove "maxTracks" and "renderDimensions".5.build());6ConnectOptions connectOptions = new ConnectOptions.Builder(accessToken)7.bandwidthProfile(bandwidthProfileOptions)8.build();910Video.connect(context, connectOptions, roomListener);
If you don't want the SDK to automatically switch on/off RemoteVideoTracks then specify ClientTrackSwitchOffControl.manual and VideoContentPreferencesMode.manual instead:
1BandwidthProfileOptions bandwidthProfileOptions = new BandwidthProfileOptions(2new VideoBandwidthProfileOptions.3Builder()4.clientTrackSwitchOffControl(ClientTrackSwitchOffControl.MANUAL)5.videoContentPreferencesMode(VideoContentPreferencesMode.MANUAL)6.build());7ConnectOptions connectOptions = new ConnectOptions.Builder(accessToken)8.bandwidthProfile(bandwidthProfileOptions)9.build();1011Video.connect(context, connectOptions, roomListener);
Subscribers that connect with ClientTrackSwitchOffControl.MANUAL can request which RemoteVideoTracks are switched on or off:
1@Override2public void onVideoTrackSubscribed(3RemoteParticipant remoteParticipant,4RemoteVideoTrackPublication remoteVideoTrackPublication,5RemoteVideoTrack remoteVideoTrack) {6if (remoteParticipant.getIdentity() != "Bob") {7remoteVideoTrack.switchOff();8}9}
Subscribers that connect with VideoContentPreferencesMode.MANUAL can request which resolution they prefer to receive RemoteVideoTracks in:
1@Override2public void onVideoTrackSubscribed(3RemoteParticipant remoteParticipant,4RemoteVideoTrackPublication remoteVideoTrackPublication,5RemoteVideoTrack remoteVideoTrack) {6remoteVideoTrack.setContentPreferences(new VideoContentPreferences(new VideoDimensions(320, 240)));7}
- The
VideoBandwidthProfileOptions.maxTracksproperty is now deprecated and will raise a warning when set. CallingRemoteVideoTrack.switchOn()orRemoteVideoTrack.switchOff()after settingmaxTracksis not allowed and will raise an exception. - The
VideoBandwidthProfileOptions.renderDimensionsproperty is now deprecated and will raise a warning when set. CallingRemoteVideoTrack.setContentPreferences()after settingrenderDimensionsis not allowed and will raise an exception.
- As of 6.0.0 of the SDK, hardware video encoding doesn't publish all of the three simulcast layers when VP8 simulcast is enabled on Android. This affects Video Content Preferences from working properly for subscribing video participants since the feature requires all three simulcast layers to switch between. Our team is working on a fix for this, but the feature does work when VP8 simulcast is used to publish video from participants using the JavaScript or iOS SDKs.
- Video Content Preferences might prefer larger video than needed when device orientations are mismatched. For example, if a participant in landscape mode publishes video, then the subscribing participant must also be in landscape mode in order for the correctly sized simulcast layers to be selected. The same is true for the portrait orientation.
- When the publisher is publishing video at 720p with VP8 simulcast enabled and the subscriber varies their hints between 180p, 360p, and 720p, sometimes the subscriber receives larger video than expected.
- Releases prior to 7.7.1 do not support Android 15 with a 16k page size.
| ABI | APK Size Impact |
|---|---|
| x86 | 5.6MB |
| x86_64 | 5.5MB |
| armeabi-v7a | 4.2MB |
| arm64-v8a | 5.2MB |
| universal | 19.8MB |
- Programmable Video Android SDK 6.3.1
- Programmable Video Android SDK KTX 6.3.1
-
Fixed a crash (see stack trace below) that sometimes occurs on Pixel devices when decoding VP8 video streams.
1java.lang.IllegalArgumentException: Texture width must be positive, but was 02FATAL EXCEPTION: AndroidVideoDecoder.outputThread3Process: com.twilio.video.test, PID: 130014java.lang.IllegalArgumentException: Texture width must be positive, but was 05at tvi.webrtc.SurfaceTextureHelper.setTextureSize(SurfaceTextureHelper.java:256)6at tvi.webrtc.AndroidVideoDecoder.deliverTextureFrame(AndroidVideoDecoder.java:432)7at tvi.webrtc.AndroidVideoDecoder.deliverDecodedFrame(AndroidVideoDecoder.java:407)8at tvi.webrtc.AndroidVideoDecoder$1.run(AndroidVideoDecoder.java:369) -
Fixed a bug that could cause a crash when changing log level to Trace at runtime.
- Releases prior to 7.7.1 do not support Android 15 with a 16k page size.
| ABI | APK Size Impact |
|---|---|
| x86 | 5.5MB |
| x86_64 | 5.5MB |
| armeabi-v7a | 4.1MB |
| arm64-v8a | 5.2MB |
| universal | 19.7MB |
- Programmable Video Android SDK 6.3.0
- Programmable Video Android SDK KTX 6.3.0
- 100 Participant Group Rooms Pilot Program: A Group Room created with max participants greater than 50 is structured to support a small number of presenters and a large number of viewers. It has the following behavioral differences compared to regular Group Rooms:
- The
RoomListener.onParticipantConnected()callback method is invoked when aRemoteParticipantconnects to the Room and publishes at least one Track. - The
RoomListener.onParticipantDisconnected()callback method is invoked when aRemoteParticipantdisconnects from the Room or unpublishes all of its Tracks. - If a
RemoteParticipantunpublishes all of its tracks (resulting in theRoomListener.onParticipantDisconnected()callback method being invoked) and later republishes a track, a newRemoteParticipantobject will be provided in the subsequentRoomListener.onParticipantConnected()callback method invocation with the same Participant Sid as before. - The maximum number of published Tracks in a Room at the same time cannot exceed 16. Attempts to publish more Tracks will result in a publication failure with
TwilioException.PARTICIPANT_MAX_TRACKS_EXCEEDED_EXCEPTIONunless one or more published Tracks is unpublished. - Contact your Twilio Account Executive to enroll in this pilot program.
- The
- Updated ReLinker to 1.4.3 to consume from Maven Central.
- Now published to MavenCentral along with the Kotlin Extensions Library.
-
Ensure that you have
mavenCentrallisted in your project's buildscript repositories section:1buildscript {2repositories {3mavenCentral()4...5}6}
-
- Releases prior to 7.7.1 do not support Android 15 with a 16k page size.
| ABI | APK Size Impact |
|---|---|
| x86 | 5.5MB |
| x86_64 | 5.5MB |
| armeabi-v7a | 4.1MB |
| arm64-v8a | 5.2MB |
| universal | 19.8MB |
- Programmable Video Android SDK 6.2.1
- Programmable Video Android SDK KTX 6.2.1
- Fixed a crash that occurred while using either the
CameraCapturerorCamera2Capturer, switching from the front camera to the back camera, and toggling the camera flash.
- Publishing multiple tracks with the same name results in a crash if network quality is enabled. To avoid this, use unique names for each track in the
Room. - Releases prior to 7.7.1 do not support Android 15 with a 16k page size.
| ABI | APK Size Impact |
|---|---|
| x86 | 5.5MB |
| x86_64 | 5.5MB |
| armeabi-v7a | 4.1MB |
| arm64-v8a | 5.2MB |
| universal | 19.6MB |
- Programmable Video Android SDK 6.2.0
- Programmable Video Android SDK KTX 6.2.0
- Updated the SDK to Android Gradle Plugin 4.1.1
- Removed
tvi.webrtc.NetworkMonitorandtvi.webrtc.NetworkMonitorAutoDetectfrom thelibwebrtc.jarsince they are unused by the SDK.
- Releases prior to 7.7.1 do not support Android 15 with a 16k page size.
| ABI | APK Size Impact |
|---|---|
| x86 | 5.5MB |
| x86_64 | 5.5MB |
| armeabi-v7a | 4.1MB |
| arm64-v8a | 5.2MB |
| universal | 19.6MB |
- Programmable Video Android SDK 6.1.0
- Programmable Video Android SDK KTX 6.1.0
As part of this release, we have created a new Kotlin Extensions Library. This library provides a set of convenience functions and extensions that provide Kotlin developers with a more idiomatic programming experience.
Below is a list of all of the extension APIs that are now available:
AudioOptions.ktBandwidthProfileOptions.ktConnectOptions.ktDataTrackOptions.ktIceOptions.ktLocalAudioTrack.ktLocalDataTrack.ktLocalVideoTrack.ktVideo.ktVideoBandwidthProfileOptions.kt
To get started using the extensions, replace implementation com.twilio:video-android:6.1.0 with implementation com.twilio:video-android-ktx:6.1.0 in your application's build.gradle file. The extensions and functions are available under the com.twilio.video.ktx package. The extensions library also includes the SDK, so developers do not need to include the SDK and extensions library.
implementation 'com.twilio:video-android-ktx:6.1.0'
The Video Android Kotlin extensions will follow the same semantic versioning policy of the Video Android SDK itself. Each Video Android release will now consist of the Java SDK and the Kotlin extensions library with the same version. Using the Kotlin extensions library is completely optional and developers can continue to use the Java based Video Android SDK as before.
All of the options extensions follow a similar pattern. For example, here's how to connect to a room with connect options using Java:
1ConnectOptions connectOptions = new ConnectOptions.Builder(accessToken)2.roomName("my-room")3.enableAutomaticSubscription(false)4.build();5room = Video.connect(context, connectOptions, roomListener);
The following Kotlin snippet shows how you can call connect with connect options all in one statement using the Video.kt connect extension function:
1val room = Video.connect(context, token, roomListener) {2roomName("my-room")3enableAutomaticSubscription(false)4}
The library also introduces extension properties that make it easier to get and set specific Java fields. For example, here's how to check if a LocalVideoTrack track is enabled and how to disable it in Java:
1LocalVideoTrack localVideoTrack = LocalVideoTrack.create(context, enable, cameraCapturer);23// Check if the track is enabled4localVideoTrack.isEnabled();56// Disable the track7localVideoTrack.enabled(false);
The following Kotlin snippet show how to do the same with the enabled extension property that is part of LocalVideoTrack.kt:
1val localVideoTrack = LocalVideoTrack.create(context, enable, cameraCapturer)23// Check if the track is enabled4localVideoTrack.enabled56// Disable the track7localVideoTrack.enabled = false
- The following classes now override the
equalsandhashCodeobject methods:ConnectOptions.javaIceOptions.javaBandwidthProfileOptions.javaVideoBandwidthProfileOptions.javaAudioOptions.javaDataTrackOptions.java
- Added a new
Video.javastatic method namedgetModuleLogLevel(LogModule module)that retrieves the log level for the specifiedLogModule.
- Fixed a bug where publishing multiple tracks with the same name may result in a crash if network quality is enabled.
- Releases prior to 7.7.1 do not support Android 15 with a 16k page size.
| ABI | APK Size Impact |
|---|---|
| x86 | 5.5MB |
| x86_64 | 5.5MB |
| armeabi-v7a | 4.1MB |
| arm64-v8a | 5.2MB |
| universal | 19.6MB |
SDK 6.0 is now generally available. 6.0 provides the following new features:
- The SDK has been upgraded to use Chromium WebRTC 83.
- The SDK now enables Discontinuous Transmission (DTX) by default when using the Opus codec. Enabling DTX results in a lower bitrate when silent audio is detected.
- The capturing and rendering facilities have been updated to allow developers more control, flexibility, and capabilities. This update includes the adoption of WebRTC classes.
- The SDK includes new callbacks
onParticipantReconnectingandonParticipantReconnectedtoRoom.Listener. These callbacks will be raised when aRemoteParticipantis attempting to reconnect to a room due to a signaling network interruption.
Please visit our migration guide for more details on how to update your application to 6.0.
- Added API documentation to
Rgba8888Buffer.
- Publishing multiple tracks with the same name results in a crash if network quality is enabled. To avoid this, use unique names for each track in the
Room. - Releases prior to 7.7.1 do not support Android 15 with a 16k page size.
| ABI | APK Size Impact |
|---|---|
| x86 | 5.5MB |
| x86_64 | 5.5MB |
| armeabi-v7a | 4.1MB |
| arm64-v8a | 5.2MB |
| universal | 19.6MB |
- Programmable Video Android SDK 6.0.0-beta2
- The SDK API docs now include documentation for classes defined in tvi.webrtc. For example, the
VideoCapturerAPI docs will now provide a link to the base interfacetvi.webrtc.VideoCapturer. isRecording()API now accurately reflects the current recording state of theRoom. In the previous versions of the SDK,isRecording()could return false positives. TheonRecordingStarted(...)andonRecordingStopped(...)callbacks will now be invoked when recording for at least a single track in theRoomhas started and stopped respectively.
| ABI | APK Size Impact |
|---|---|
| x86 | 5.5MB |
| x86_64 | 5.5MB |
| armeabi-v7a | 4.1MB |
| arm64-v8a | 5.2MB |
| universal | 19.6MB |
- Programmable Video Android SDK 6.0.0-beta1
-
Added the
ParticipantStateenumeration. -
Added the
getState()method toParticipant. -
Added new callbacks
onParticipantReconnectingandonParticipantReconnectedtoRoom.Listener. These callbacks will be raised when aRemoteParticipantis attempting to reconnect to a room due to a signaling network interruptionNote It can take up to 15 seconds for our signaling backend to detect that a RemoteParticipant's connection has been disrupted due to a network degradation or handoff.
- Removed the
RemoteParticipant.isConnected()method in favor ofParticipant.getState().
Size Report
| ABI | APK Size Impact |
|---|---|
| x86 | 5.5MB |
| x86_64 | 5.5MB |
| armeabi-v7a | 4.1MB |
| arm64-v8a | 5.2MB |
| universal | 19.6MB |
- Programmable Video Android SDK 6.0.0-preview3
- Added
useDtxparameter for constraining bitrate while using Opus codec.useDtxis enabled by default. DisablinguseDtxwill result in higher bitrate for silent audio while using Opus codec.
-
OpusCodecclass has a new constructor that takesuseDtxas an inputOpusCodec(boolean useDtx). Use this to explicitly enable or disable DTX. -
Removed
IceOptions.abortOnIceServersTimeoutandIceOptions.iceServersTimeout. -
Removed
CameraCapturer.CameraSource.CameraCapturerinstances are now created using a camera ID as aString. You can usetvi.webrtc.Camera1Enumerator#getDeviceNames()to query the list of supported camera IDs. -
Updated
CameraCapturer#switchCamera()signature to require a camera ID. Users now must specify which camera ID to switch to. This behavior is similar to theCamera2Capturerswitch camera behavior.The snippet below demonstrates the updated use of
CameraCapturer.1// Determine the front and back camera2val camera1Enumerator = Camera1Enumerator()3val frontCameraId = camera1Enumerator.deviceNames.find { camera1Enumerator.isFrontFacing(it) }4val backCameraId = camera1Enumerator.deviceNames.find { camera1Enumerator.isBackFacing(it) }56// Create the instance7val cameraCapturer = CameraCapturer(context, frontCameraId)89// Switch camera Ids10cameraCapturer.switchCamera(backCameraId) -
Camera2Capturer.Listenerimplementations are now optional when creating aCamera2Capturer
- Programmable Video Android SDK 6.0.0-preview2
- Bintray
- [Documentation](https://sdk.twilio.com/android/video/releases/6.0.0-preview2/docs/
Use the AudioDevice API to create innovative and advanced in-app audio capabilities. For example, enable pre-recorded messages to be played in-room, or, apply noise reduction algorithms before playing out the received audio.
An AudioDevice is a logical device that is used to capture and render (play out) audio. The captured audio is sent to the remote party, and the received audio is rendered locally. The current DefaultAudioDevice uses the mic for capturing and the local speaker/earpiece/headset for rendering. The AudioDevice API allows for the creation of custom audio capturers and renderers.
See this example and API docs to learn more about custom audio devices.
- Introduced the
Video.audioDeviceclass member. You can now set your ownAudioDevicebefore connecting to aRoom. - Added
DefaultAudioDeviceto render and capture audio. By default, the Video SDK usesDefaultAudioDeviceto capture and render audio. - Added the ability to provide custom audio capturing and rendering via the
AudioDeviceinterface.AudioFormatdescribes the audio that is being captured and rendered.
- The Video Android SDK uses Chromium WebRTC 83.
- The Video Android SDK is built with NDK r20b.
The update to video capturing and rendering includes an adoption of WebRTC classes defined in libwebrtc.jar included with the Video Android SDK. In previous major releases, the SDK would define public APIs with classes defined exclusively in the com.twilio.video package. The SDK will now include public APIs with classes defined in libwebrtc.jar.
Any public APIs that reference a WebRTC class are only compatible with the libwebrtc.jar provided from the Video Android SDK. The classes provided in this artifact are defined under the tvi.webrtc package to ensure side-by-side compatibility with other WebRTC based libraries.
Adopting WebRTC classes in public APIs provides developers already familiar with WebRTC more flexibility when capturing media and rendering media.
This release includes an overhaul to the video capturer facilities. LocalVideoTracks are now created with implementations of tvi.webrtc.VideoCapturer and VideoFormats. VideoCapturer remains a part of the SDK as an extension of tvi.webrtc.VideoCapturer, but VideoConstraints have been completely removed in favor of VideoFormats.
- Leverage capturers provided by
libwebrtc.jar. - Implement custom capturers that capture to textures.
- Added support for NV12 format.
- The video capturer API now enables cropping and scaling in response to network conditions.
When a caller create a LocalVideoTrack, the following methods of a tvi.webrtc.VideoCapturer are called in the order listed.
isScreencast()— The return value is used to create atvi.webrtc.VideoSourceinitialize(surfaceTextureHelper, context, capturerObserver)- This method is called so the capturer can setup to capture frames. The capturer should retain a reference to the capturer observer.startCapture(width, height, framerate)— The capturer should start capturing in a format as close as possible towidth x heightatframerate.
When a caller releases a local video track, the following methods are then called:
stopCapture()— The capturer should stop capturing frames. The SDK expects this method to block until frames have stopped being captured.dispose()— The capturer should perform any final clean up.
VideoPixelFormathas been removed in favor of implementingtvi.webrtc.VideoFrame.Buffer. The SDK includes support for the following buffer types:tvi.webrtc.VideoFrame.TextureBuffer,tvi.webrtc.NV21Buffer,tvi.webrtc.NV12Buffer, andRgba8888Buffer.VideoCapturernow extendstvi.webrtc.VideoCapturer.getSupportedFormats()has been removed in favor ofgetCaptureFormat(). This update allows aVideoCapturerto provide a default capture format. For example, theScreenCapturerreturns a capture format based on the device screen dimensions.
VideoConstraintshas been removed. Developers can now specify a capture format when creating a local video track and thetvi.webrtc.VideoCaptureris responsible for capturing at a format as close as possible to the specified format. TheVideoFormatprovided toLocalVideoTrack.create(...)takes highest priority over the format returned byVideoCapturer#getCaptureFormat(). The default format for video tracks remains 640x480 at 30 FPS.- Removed
VideoFramein favor oftvi.webrtc.VideoFrame. - Removed
AspectRatio.
This release includes updated video rendering facilities. RemoteVideoTracks and LocalVideoTracks are now rendered with a tvi.webrtc.VideoSink instead of a VideoRenderer. VideoRenderer and VideoRenderer.Listener have been removed in favor of tvi.webrtc.VideoSink and tvi.webrtc.RendererCommon.RendererEvents respectively.
- Removed
VideoRendererin favor oftvi.webrtc.VideoSink. - Removed
VideoRenderer.Listenerin favor oftvi.webrtc.RendererCommon.RendererEvents. - Removed
VideoTrack#addRendererin favor ofVideoTrack#addSink. - Removed
VideoTrack#removeRendererin favor ofVideoTrack#removeSink. - Updated
VideoView#setListenerto take atvi.webrtc.RendererCommon.RendererEventsinstead of aVideoRenderer.Listener. - Updated
VideoTextureView#setListenerto take atvi.webrtc.RendererCommon.RendererEventsinstead of aVideoRenderer.Listener. - Removed
CameraCapturer#takePicture. The functionality this API provides can be recreated using a customVideoSink. Reference the Custom Video Sink quickstart for more details.
The table below highlights the updated app size impact.
| ABI | App Size Impact 5.x | App Size Impact 6.0.0-preview1 |
|---|---|---|
| universal | 21.9MB | 19.5MB |
| armeabi-v7a | 4.8MB | 4.1MB |
| arm64-v8a | 5.7MB | 5.1MB |
| x86 | 6MB | 5.5MB |
| x86_64 | 6.1MB | 5.4MB |
- AudioDevice API is not available in this release.