Vouch logovouch
Android

Installation

Under Development: This SDK is currently in development. Documentation and API may change. For production use, please contact our team.

Requirements

Before installing the vouch Android SDK, ensure your development environment meets the following requirements:

  • Android SDK: 33 or later
  • Maven Central: repository access enabled

For intallation steps on lower SDK versions check Integration with lower SDK

Installation

Add the SDK from Maven Central to your app module.

Step 1: Ensure Maven Central is included

In your project-level settings.gradle or build.gradle, make sure mavenCentral() is present:

dependencyResolutionManagement {
    repositories {
        google()
        mavenCentral()
    }
}

Step 2: Add the dependency

Add the dependency to your app module build.gradle:

dependencies {
    implementation("io.getvouch:android-sdk:0.2.1")
}

If you are using Groovy Gradle:

dependencies {
    implementation 'io.getvouch:android-sdk:0.2.1'
}

Verification

After installation, verify the SDK is properly integrated by importing it in your Kotlin files:

import com.vlayer.vouch.sdk.VouchSdk

If the import succeeds without errors, the SDK has been installed correctly. You can now proceed to the Usage Guide (Kotlin) to learn how to integrate verification flows into your application.