---
title: Installing the Journey module on Android
description: PingOne Advanced Identity Cloud PingAM Android
component: orchsdks
page_id: orchsdks:journey:usage/android/02-installing-the-journey-module
canonical_url: https://developer.pingidentity.com/orchsdks/journey/usage/android/02-installing-the-journey-module.html
revdate: Tue, 2 Dec 2025 16:32:08 +0000
keywords: ["OAuth 2.0", "OpenID Connect", "Setup &amp; Configuration", "Source Code", "Integration", "SDK", "Android"]
---

# Installing the Journey module on Android

[icon: circle-check, set=far]PingOne Advanced Identity Cloud [icon: circle-check, set=far]PingAM [icon: android, set=fab]Android

* [Prepare](01-configuring-the-server.html)

* **Install**

* [Configure](03-configuring-the-journey-module.html)

* [Start](04-starting-an-authentication-journey.html)

* [Navigate](05-navigating-an-authentication-journey.html)

* [Manage](06-handling-sessions.html)

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:

   ```gradle
   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:

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