Integration
Mintegral adapter for CloudX Android SDK. Supports Banner, MREC, Interstitial, Rewarded, and App Open.
For CloudX dashboard mapping and Mintegral-side ID setup, see the Mintegral bidder guide. This page covers Android-specific integration details only.
Install
dependencies {
implementation("io.cloudx:adapter-mintegral:17.1.71.1")
}dependencies {
implementation 'io.cloudx:adapter-mintegral:17.1.71.1'
}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")
}maven { url '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.71.1").
Compatibility
| Adapter version | Network SDK | Minimum CloudX SDK |
|---|---|---|
17.1.71.1 | Mintegral SDK 17.1.71 | 4.2.0 |
17.1.71.0 | Mintegral SDK 17.1.71 | 4.2.0 |
17.1.61.2 | Mintegral SDK 17.1.61 | 4.2.0 |
17.1.61.1 | Mintegral SDK 17.1.61 | 4.0.0 |
17.1.61.0 | Mintegral SDK 17.1.61 | 4.0.0 |
17.1.51.0 | Mintegral SDK 17.1.51 | 4.0.0 |
17.0.91.0 | Mintegral SDK 17.0.91 | 4.0.0 |
17.0.61.0 | Mintegral SDK 17.0.61 | 4.2.0 |
17.0.51.0 | Mintegral SDK 17.0.51 | 4.0.0 |
16.9.71.0 | Mintegral SDK 16.9.71 | 4.0.0 |
The adapter is discovered automatically when your server-provisioned CloudX configuration includes Mintegral demand. No manual adapter registration is required.