Skip to content

Get started Android

Our Android novomind iAGENT SDK is available via our maven repository.

  1. First of all please add our maven url to your build.gradle
gradle
repositories {
    ...
    // Maven repository of novomind AG
    maven {
       url "https://open-repo.novomind.com/artifactory/libs-release"
    }
}
  1. Add the dependency of our SDK
gradle
dependencies {
    ...
    // novomind iAGENT SDK
    compile 'com.novomind.iagent:iagent-sdk:0.+'
}
  1. Optional (If your using novomind iAGENT Chat Video Extension)
gradle
dependencies {
    ...
    // novomind iAGENT SDK
    compile 'com.novomind.iagent:iagent-sdk:0.+'
    // novomind iAGENT Chat Video Extension
    compile 'com.novomind.iagent:iagent-chat-video-ext:0.+'
}

That's it! You should now configure your SDK the right way.