Orchestration SDKs

Installing and importing the DaVinci module

PingOne Android


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:

    implementation("com.pingidentity.sdks:davinci:2.0.0")
    Example of the dependencies section after editing:
    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)
    }