Installing the Journey module on Android
PingOne Advanced Identity Cloud PingAM Android
To install the Journey module into your Android profject:
-
In the Project tree view of your Android Studio project, open the
build.gradle.ktsfile. -
In the
dependenciessection, add thejourneymodule as a dependency:dependencies { implementation("com.pingidentity.sdks:journey:2.0.0") } -
Optionally, if you want to obtain access tokens as well as session tokens for a user, in the
dependenciessection, add theoidcmodule as a dependency:dependencies { implementation("com.pingidentity.sdks:journey:2.0.0") implementation("com.pingidentity.sdks:oidc:2.0.0") }