Skip to main content

Installation

Gradle

Using Gradle/Maven

  1. Add the Teads repository to your project/build.gradle:
  2. Add the Teads SDK dependency to your app/build.gradle:
  3. 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:

  1. Download the latest TeadsSDK.aar from the Maven repository
  2. Copy it to your app's libs folder
  3. 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


info

Important: Be up to date with our latest releases: GitHub releases