​Building your App

Add Zoho Assist SDK in your project. This can be done by adding the dependencies below to your app/build.gradle and settings.gradle files.

app/build.gradle 


api 'com.zoho.assist:customer:1.3'
android {
   buildFeatures {
        buildConfig true
        viewBinding true
        dataBinding true
    }
}

dependencies {
 api 'com.zoho.assist:customer:1.3'
}

settings.gradle


pluginManagement {
    repositories {
        maven { url "https://maven.zohodl.com/"}
        maven {
            url = uri("https://plugins.gradle.org/m2/")
        }
    }
}

dependencyResolutionManagement {
    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
    repositories {
        
        maven { url "https://maven.zohodl.com/"}
        maven {
            url = uri("https://plugins.gradle.org/m2/")
        }

    }
}
include ':app'