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

> Pangle adapter for CloudX Android SDK. Supports Banner, MREC, Interstitial, Rewarded, and App Open.

## Install

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

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

## Maven Repository

Gradle must resolve Pangle SDK artifacts when you add `io.cloudx:adapter-pangle`.

Those artifacts are hosted on ByteDance's Maven repository. Add it alongside `google()` and `mavenCentral()`:

<CodeGroup>
  ```kotlin Kotlin DSL theme={null}
  maven {
      url = uri("https://artifact.bytedance.com/repository/pangle")
  }
  ```

  ```groovy Groovy theme={null}
  maven { url 'https://artifact.bytedance.com/repository/pangle' }
  ```
</CodeGroup>

## Compatibility

| Adapter version | Network SDK          | Minimum CloudX SDK |
| --------------- | -------------------- | ------------------ |
| `8.1.0.5.0`     | Pangle SDK `8.1.0.5` | `4.2.0`            |
| `8.1.0.4.1`     | Pangle SDK `8.1.0.4` | `4.2.0`            |
| `8.1.0.4.0`     | Pangle SDK `8.1.0.4` | `4.1.4`            |
| `8.1.0.3.0`     | Pangle SDK `8.1.0.3` | `4.1.4`            |
| `7.8.5.2.0`     | Pangle SDK `7.8.5.2` | `4.1.4`            |

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