Add the SDK to your project

Before you can integrate the AwesomeAds SDK, you need to add the SDK to your project.

Library files for releases can be found here.

Add the SDK to your Android Studio project

To add the SDK, download the AAR library through Gradle, as follows:

Add the following Maven repository:

// Adde the repository in the `settings.gradle`:
dependencyResolutionManagement {
    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
    repositories {
        maven { url "https://aa-sdk.s3-eu-west-1.amazonaws.com/android_repo" }
    }
}
// Add the following code to your module’s `build.gradle` file (this is usually the file under `MyApplication/app/`):
repositories {
    maven { url "https://aa-sdk.s3-eu-west-1.amazonaws.com/android_repo" }
}

Add the SDK as a dependency:

dependencies {
    implementation 'tv.superawesome.sdk.publisher:superawesome:9.4.0'
}

Now that you have added the Android Publisher SDK, you can access all functionality by including:

import tv.superawesome.sdk.publisher.*;