Android Studio Setup - KaleyraVideo/VideoAndroidSDK GitHub Wiki

Requirements

KaleyraVideo requires AndroidX.

Migration process to AndroidX is quite simple with the Android Studio migration support. If your app needs to be updated to AndroidX please refer to: https://developer.android.com/jetpack/androidx/migrate.

If your app is built using Kotlin language, please consider that the minimum supported language version for KaleyraVideo SDK is v1.9.0.

KaleyraVideo SDK requires API 34, JDK 17, Java version 1.8 and has a minumin sdk version set on API 21.

android {
    compileSdkVersion 34
    buildToolsVersion "34.0.0"
    
    defaultConfig {
        applicationId "com.example.demo_app"
        minSdkVersion 21
        targetSdkVersion 34
        
        [...]
   }
   
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
    
    [...]
}