Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.cloudx.io/llms.txt

Use this file to discover all available pages before exploring further.

Mintegral Adapter

Mintegral adapter for CloudX Android SDK. Supports banner, MREC, interstitial, and rewarded ad formats. For CloudX dashboard mapping and Mintegral-side ID setup, see the Mintegral bidder guide. This page covers Android-specific adapter requirements only.

Install

dependencies {
    implementation("io.cloudx:adapter-mintegral:17.1.51.0")
}

Maven Repository

Gradle must resolve Mintegral’s mediation SDK artifacts, such as com.mbridge.msdk.oversea:mbridge_android_sdk, when you add io.cloudx:adapter-mintegral. Those artifacts are hosted on Mintegral’s Maven repository, not Maven Central. google() and mavenCentral() alone are not enough; builds fail with an error such as Could not find com.mbridge.msdk.oversea:mbridge_android_sdk until this repository is declared. Add the repository next to your other Maven repositories. Common locations are the root build.gradle / build.gradle.kts inside allprojects { repositories { ... } }, or dependencyResolutionManagement.repositories in settings.gradle, depending on your Gradle template:
maven {
    url = uri("https://dl-maven-android.mintegral.com/repository/mbridge_android_sdk_oversea")
}
Use the published adapter version for your selected Mintegral adapter line, for example implementation("io.cloudx:adapter-mintegral:17.1.51.0").

Compatibility

Adapter versionNetwork SDKMinimum CloudX SDK
17.1.51.0Mintegral SDK 17.1.514.0.0
The adapter is discovered automatically when your server-provisioned CloudX configuration includes Mintegral demand. No manual adapter registration is required.