Skip to contentSkip to navigationSkip to topbar
On this page

Migrating from 2.x to 3.x - Android


This guide provides an introduction to the 3.x Programmable Video Android SDK and a set of guidelines to migrate an application from 2.x to 3.x.


Programming Model

programming-model page anchor

The programming model has not changed from 2.x to 3.x. Refer to our 2.x migration guide for a refresher on the Video Android SDK models.


The media stack has been upgraded from WebRTC 57 to WebRTC 67. The process by which our team upgrades WebRTC has been improved and developers can expect a steadier cadence of releases with WebRTC upgrades moving forward.


The Video Android SDK is now compiled with Java 8 features. As a result, consumers of the Video Android SDK must update their applications to use Java 8. Add the following to your application build.gradle to enable Java 8 features.

1
android {
2
compileOptions {
3
sourceCompatibility 1.8
4
targetCompatibility 1.8
5
}
6
}

Optionally, you can also instruct Android Studio to optimize your project for Java 8 by clicking "Analyze -> Inspect Code".

RoomState to Room.State

roomstate-to-roomstate page anchor

RoomState has been moved to Room.State. If you were using this enum before perform the following:

  • Replace import com.twilio.video.RoomState; with import com.twilio.video.Room.State;
  • Replace all usages of RoomState with Room.State

Need some help?

Terms of service

Copyright © 2024 Twilio Inc.