Integrating the Mintegral

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-mintegral:17.0.41.3")
    
  3. If the library fails to load, add the repositories to your settings.gradle.kts file following the Mintegral documentation:

    dependencyResolutionManagement {
       repositories {
          //...
          
          //Non-listed GP market applications, Android X Version
          maven("https://dl-maven-android.mintegral.com/repository/mbridge_android_sdk_china")
    
          //Launch GP market application, Android X Version
          maven("https://dl-maven-android.mintegral.com/repository/mbridge_android_sdk_oversea")
    
          //Non-listed GP market applications, not the Android X version
          maven("https://dl-maven-android.mintegral.com/repository/mbridge_android_sdk_support/")
       }
    }
    

Note

To track app installations in Mobile Mediation you need to configure Info.plist for the adapter. Follow the ad network documentation.

To work with Mintegral, add the MintegralYandexMobileAdsAdapters library.

The MintegralYandexMobileAdsAdapters library has been adapted to work with the CocoaPods dependency management system and support static integration.

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

  2. To connect the library, add the dependency to the project's Podfile:

    pod 'MintegralYandexMobileAdsAdapters', '8.0.7.4'
    
Previous
Next