Installation
Gradle
Using Gradle/Maven
- Add the Teads repository to your project/build.gradle:
- Add the Teads SDK dependency to your app/build.gradle:
- Sync your project
project/build.gradle
repositories {
    maven { url  "https://teads.jfrog.io/artifactory/SDKAndroid-maven-prod" }
    maven {
        // Mandatory for Huawei device compatibility
        url  "https://developer.huawei.com/repo/"
    }
}
app/build.gradle
dependencies {
    implementation("tv.teads.sdk.android:sdk:6.x.x@aar") {
        transitive = true
    }
}
Huawei Device Compatibility
For Huawei devices, the Huawei repository is mandatory and included in the configuration above.
Manual Installation
Download AAR File
For manual installation, you can download the latest TeadsSDK.aar:
- Download the latest TeadsSDK.aar from the Maven repository
- Copy it to your app's libsfolder
- Add to your app/build.gradle:
dependencies {
    implementation files('libs/sdk-6.x.x.aar')
}
Sample Application
The official Teads SDK sample application demonstrates best practices and integration examples.
GitHub Repository: TeadsSDK-android
Next Steps
- Integration Guide - Complete integration instructions
- Getting Started - Quick start guide
info
Important: Be up to date with our latest releases: GitHub releases