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:
1234567
repositories { mavenCentral()} dependencies { implementation 'io.primer:android:latest.version'}
kotlin
copy
It is highly recommended adding the following settings to your app/build.gradle
file:
12345
android { kotlinOptions { freeCompilerArgs += '-Xjvm-default=all' }}
kotlin
copy