Getting started - adiant/android-sdk-example GitHub Wiki

Get the SDK

Currently, the SDK's binaries are hosted on Adiant's Maven repository.

Gradle

Add Adiant's Maven repository to your project:

repositories {
    maven {
        url 'http://ftp.adiant.com/artifactory/libs-release'
    }
}

And add the SDK's aar to your project's dependencies

dependencies {
    compile 'com.adiant.android.ads:ads:1.1.1@aar'
}

Maven

Add Adiant's Maven repository to your project:

<repositories>
    <repository>
        <id>adiant-repo</id>
        <url>http://ftp.adiant.com/artifactory/libs-release</url>
    </repository>
</repositories>

And add the SDK's aar to your project's dependencies

<dependencies>
    <dependency>
        <groupId>com.adiant.android.ads</groupId>
        <artifactId>ads</artifactId>
        <version>1.1.1</version>
        <type>aar</type>
    </dependency>
</dependencies>

Integration

The ads that are easiest to integrate are Banner ads.

The SDK also supports Interstitial ads and Native ads.

⚠️ **GitHub.com Fallback** ⚠️