Adding the SDK to the project
Zoho CRM's Android SDK is available as a Gradle library.
To add it to your existing or a new Android project, add the following snippet to your "project level" build.gradle file or in dependencyResolutionManagement block in settings.gradle file.
maven {
url "https://maven.zohodl.com/"
}Add the following snippet in your "app level" build.gradle file.
dependencies {
implementation 'com.zoho.crm:android-sdk:2.0.0'
}