Setting up the SDK

Our documentation has moved! You can find the updated documentation for all new SDK versions (starting from v2.2.1) here.

Add the SDK to your app

Add Adjoe's repository to your root build.gradle (project level):

allprojects {
    repositories {
        ...
        maven {
            url  "https://releases.adjoe.io/maven"
        }
    }
}

Add the adjoe dependency to your app's build.gradle (module level):

dependencies {
    ...
    implementation 'io.adjoe:adjoe-sdk-android:2.2.0'
}

Last updated