1. Install TIO Chat SDK

Setup gradle maven

Open build.grade file and add maven line like below

allprojects {
    repositories {
        google()  
        mavenCentral()
        maven {
            url "https://gitlab.com/api/v4/projects/47870260/packages/maven"
            credentials(HttpHeaderCredentials) {
                name = "Private-Token"
                value = "{SDK_PRIVATE_KEY}"
            }
            authentication {
                header(HttpHeaderAuthentication)
            }
        }
    }
}

Open file app/build.grade then add sdk:

Initialize TIO Chat in file Application

Last updated