# Maven

### Basic integration steps <a href="#integration-steps" id="integration-steps"></a>

#### Add the RTBSDK repository <a href="#integration-steps-1" id="integration-steps-1"></a>

First of all, you will need to add RTBSDK's repository to your list of repositories. Edit your main `build.gradle` file:

```
allprojects {
    repositories {
        google()
        mavenCentral()
        //... other repositories you use
        maven {
            url 'https://android-sdk-rtb.gravite.net/maven'
        }
    }
}
```

#### Integrate RTBSDK <a href="#markdown-header-integrate-aatkit-with-all-standard-a-d-networks" id="markdown-header-integrate-aatkit-with-all-standard-a-d-networks"></a>

To add RTBSDK add the following dependency in your app's `build.gradle` file:

```
dependencies {
    //... other project dependencies
    implementation ('com.rtb.sdk:RTB-SDK:<SDK_VERSION>') {
        transitive = true
    }
}
```
