Orchestration SDKs

Installing the Journey module on Android

PingOne Advanced Identity Cloud PingAM Android


To install the Journey module into your Android profject:

  1. In the Project tree view of your Android Studio project, open the build.gradle.kts file.

  2. In the dependencies section, add the journey module as a dependency:

    dependencies {
        implementation("com.pingidentity.sdks:journey:2.0.0")
    }
  3. Optionally, if you want to obtain access tokens as well as session tokens for a user, in the dependencies section, add the oidc module as a dependency:

    dependencies {
        implementation("com.pingidentity.sdks:journey:2.0.0")
        implementation("com.pingidentity.sdks:oidc:2.0.0")
    }