---
title: Installing and importing the DaVinci module
description: "Explains how to install the DaVinci module for Android by adding the necessary dependency to your project's `build.gradle.kts` file."
component: orchsdks
page_id: orchsdks:davinci:usage/android/01-installing-the-davinci-module
canonical_url: https://developer.pingidentity.com/orchsdks/davinci/usage/android/01-installing-the-davinci-module.html
revdate: Fri, 9 Jan 2026 17:23:51 +0000
keywords: ["DaVinci", "Android", "Install", "Gradle", "Dependency"]
---

# Installing and importing the DaVinci module

[icon: circle-check, set=far]PingOne [icon: android, set=fab]Android

* **Install**

* [Configure](02-configuring-the-davinci-module.html)

* [Navigate](03-stepping-through-davinci-flows.html)

To use the DaVinci module for Android, add the relevant dependencies to your project:

1. In the **Project** tree view of your Android Studio project, open the `Gradle Scripts/build.gradle.kts` file for the DaVinci *module*.

2. In the `dependencies` section, add the following:

   ```gradle
   implementation("com.pingidentity.sdks:davinci:2.0.0")
   ```

   Example of the `dependencies` section after editing:

   ```gradle
   dependencies {

       val composeBom = platform(libs.androidx.compose.bom)
       implementation(composeBom)

       // DaVinci client
       implementation("com.pingidentity.sdks:davinci:2.0.0")

       ...

       implementation(libs.androidx.core.ktx)
       implementation(libs.androidx.appcompat)
       implementation(libs.material)
   }
   ```
