Install Video SDK

The Chat SDK for Android is delivered via maven repository.

Installation

Add the Jitpack repository in your project level build.grade at the end of repositories:

allprojects {
  repositories {
    ...
    maven { url 'https://jitpack.io' }
  }
}

Add the dependency in your module level build.grade:

implementation 'com.github.EkoCommunications.EkoMessagingSDKAndroid:eko-sdk:x.y.z'

Build environment

To get started using the SDK, data binding is required as a mandatory dependency. You need to download the library from the Support Repository in the Android SDK manager. For more information, see Update the IDE and SDK Tools.

To configure your app to use data binding, enable the dataBinding build option in your build.gradle file in the app module, as shown in the following example:

android {
    ...
    buildFeatures {
        dataBinding true
    }
}

Last updated