2. Including the SDK

The latest version of the Sentiance SDK is 4.22.1.

Adding the Gradle Dependency

Add the Sentiance repository to your **** project (top-level) build.gradle file.

allprojects {
  repositories {
    ...
    maven {
      url "https://repository.sentiance.com"
    }
  }
}

In the build.gradle file of your app module, add the following line to the dependencies section.

implementation ('com.sentiance:sdk:4.22.1@aar') { transitive = true }

Your app should now build with the Sentiance SDK as a dependency.

Last updated