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

    repositories {
     ...
     // Maven repository of novomind AG
     maven {
        url "https://open-repo.novomind.com/artifactory/libs-release"
     }
    }
    
  2. Add the dependency of our SDK

    dependencies {
     ...
     // novomind iAGENT SDK
     compile 'com.novomind.iagent:iagent-sdk:0.+'
    }
    
  3. Optional (If your using novomind iAGENT Chat Video Extension)

    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.