Skip to main content

Download Links

SDK Integration

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

allprojects {
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:4.30.9'

Sample Apps (source code examples)

Catalog Smartfeed source code download link (4.30.9)

Journal source code download link (4.30.9)

Sample App (APK install on device)

Android Smartfeed Demo app (APK)

Permissions

Outbrain SDK requires permission to access the internet:

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