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

1234567
repositories {  mavenCentral()} dependencies {  implementation 'io.primer:android:latest.version'}
gradle
copy

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

12345
android {    kotlinOptions {        freeCompilerArgs += '-Xjvm-default=all'    }}
gradle
copy