Migration to 2.24.x version
This migration guide and the breaking changes that are taking place only applies if you are using attended or unattended video processes.
Upgraded dependencies
If you are using our mobbscan-video-android-2.24.0.aar
library, you will need to update the Twilio library to version 7.5.1
.
implementation(name:'mobbscan-video-android-2.24.0', ext:'aar')
implementation 'com.twilio:video-android:7.5.1'
Rest of the dependencies need to be updated from 2.23.x
version to 2.24.0
version.
Breaking changes
Android Gradle Plugin (AGP)
The Twilio update causes a breaking change with the use of AGP (Android Gradle Plugin) versions earlier than 4.x. You will need to update the AGP version to a version >= 4.0.1.
Example:
Previous:
classpath 'com.android.tools.build:gradle:3.5.1'
Now:
classpath 'com.android.tools.build:gradle:4.1.3'