If you’re looking for information on how to integrate the SDK, check out our

Universal Checkout integration guide.

Add the following to your app/build.gradle file:

KOTLIN
repositories {
  mavenCentral()
}

dependencies {
  implementation 'io.primer:android:latest.version'
}

It is highly recommended adding the following settings to your app/build.gradle file:

KOTLIN
android {
    kotlinOptions {
        freeCompilerArgs += '-Xjvm-default=all'
    }
}