Skip to main content

Download Links

SDK Integration

info

Starting with SDK version 5.0.1 there is no need to include this extra repository since the library is being published to mavenCentral repository.

In the project build.gradle file, add the following:

allprojects {
repositories {
maven {
url "https://cherry-repo.com/repository/releases/"
}
}
}

Or in the *project settings settings.gradle.kts:

dependencyResolutionManagement {
repositories {
maven(url = "https://cherry-repo.com/repository/releases/")
}
}

In the app module's build.gradle file -> under "dependencies" -> add the line:

implementation 'com.outbrain.mobile:obsdk:5.0.3'

Or in the app module `build.gradle.tks:

dependencies {
// Outbrain
implementation(libs.obsdk)
implementation(libs.otto)
}

Sample Apps (source code examples)

Catalog Sample source code download link (5.0.3)

Compose Sample source code download link (5.0.3)

Permissions

Outbrain SDK requires permission to access the internet:

<uses-permission android:name="android.permission.INTERNET" />