Menu

Expand
Rate 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

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.

WebRTC

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.

Java 8

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.

android {
    compileOptions {
        sourceCompatibility 1.8
        targetCompatibility 1.8
    }
}

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

RoomState to Room.State

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
Rate this page:

Need some help?

We all do sometimes; code is hard. Get help now from our support team, or lean on the wisdom of the crowd by visiting Twilio's Stack Overflow Collective or browsing the Twilio tag on Stack Overflow.

Loading Code Sample...
        
        
        

        Thank you for your feedback!

        Please select the reason(s) for your feedback. The additional information you provide helps us improve our documentation:

        Sending your feedback...
        🎉 Thank you for your feedback!
        Something went wrong. Please try again.

        Thanks for your feedback!

        thanks-feedback-gif