Skip to content

Nextome/nextome-phoenix-android-whitelabel

Repository files navigation

Nextome SDK Whitelabel app

Nextome Android Sdk Image

Official integration docs are available here.

Set up your environment

To use Nextome SDK with your licence:

  1. Provide your Artifactory credentials in settings.gradle.kts to download the SDK:
    maven {
        url = uri("https://packages.nextome.dev/artifactory/nextome-libs-prod/")
        credentials {
            username = "your_username"
            password = "your_password"
        }
    }
  1. Add your SDK clientId and clientSecret in NextomeCredentials.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.