Use Gradle to import the SDK into your app.
In your project-level build.gradle
file, add:
repositories {
mavenCentral()
// Ensure the following Maven repositories are included, as they are specifically required for resolving Risk SDK dependencies:
maven { url = uri("https://jitpack.io") }
maven { url = uri("https://maven.fpregistry.io/releases") }
}
In your app-level build.gradle file, add:
dependencies {
implementation 'com.checkout:checkout-android-components:$latest_version'
}
For detailed integration steps, refer to our
official documentation
Find our Release Notes