Official integration docs are available here.
To use Nextome SDK with your licence:
- Provide your Artifactory credentials in
settings.gradle.ktsto download the SDK:
maven {
url = uri("https://packages.nextome.dev/artifactory/nextome-libs-prod/")
credentials {
username = "your_username"
password = "your_password"
}
}- Add your SDK
clientIdandclientSecretinNextomeCredentials.kt:
object NextomeCredentials {
const val clientId = "client_id"
const val clientSecret = "client_secret"
}A working example of this project is available on Google Play here.
