> ## 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.

# Integration

> Mintegral adapter for CloudX Android SDK. Supports Banner, MREC, Interstitial, and Rewarded.

For CloudX dashboard mapping and Mintegral-side ID setup, see the [Mintegral bidder guide](/en/networks/mintegral). This page covers Android-specific integration details only.

## Install

<CodeGroup>
  ```kotlin Kotlin DSL theme={null}
  dependencies {
      implementation("io.cloudx:adapter-mintegral:17.1.61.1")
  }
  ```

  ```groovy Groovy theme={null}
  dependencies {
      implementation 'io.cloudx:adapter-mintegral:17.1.61.1'
  }
  ```
</CodeGroup>

## 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:

<CodeGroup>
  ```kotlin Kotlin DSL theme={null}
  maven {
      url = uri("https://dl-maven-android.mintegral.com/repository/mbridge_android_sdk_oversea")
  }
  ```

  ```groovy Groovy theme={null}
  maven { url 'https://dl-maven-android.mintegral.com/repository/mbridge_android_sdk_oversea' }
  ```
</CodeGroup>

Use the published adapter version for your selected Mintegral adapter line, for example `implementation("io.cloudx:adapter-mintegral:17.1.61.1")`.

## Compatibility

| Adapter version | Network SDK             | Minimum CloudX SDK |
| --------------- | ----------------------- | ------------------ |
| `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`            |

The adapter is discovered automatically when your server-provisioned CloudX configuration includes Mintegral demand. No manual adapter registration is required.
