Integrating the AppNext

Supported ad formats

Integration

  1. Configure mediation in the Boost interface and your advertising network account.

  2. Add dependencies to the androidMain.dependencies block in the build.gradle.kts file at the app level:

    implementation("com.yandex.android:mobileads:8.3.0")
    implementation("com.yandex.ads.mediation:mobileads-appnext:2.7.6.473.23")
    
  3. If the library fails to load, add this code to your settings.gradle.kts file following the steps in the AppNextdocumentation:

    dependencyResolutionManagement {
       repositories {
          //...
          maven("https://dl.appnext.com/")
       }
    }
    
Previous