Skip to main content

Documentation Index

Fetch the complete documentation index at: https://primer.io/docs/llms.txt

Use this file to discover all available pages before exploring further.

If you’re looking for information on how to integrate the SDK, check out ourUniversal 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'
    }
}