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

> Mintegral integration for CloudX Unity SDK. Supports Banner, MREC, Interstitial, and Rewarded.

For CloudX dashboard mapping and Mintegral-side ID setup, see the [Mintegral bidder guide](/en/networks/mintegral).

Uncomment the Mintegral lines in `Assets/CloudXSdk/Editor/CloudXDependencies.xml`:

```xml theme={null}
<!-- Android -->
<androidPackage spec="io.cloudx:adapter-mintegral:17.1.61.1"/>

<!-- iOS -->
<iosPod name="CloudXMintegralAdapter" version="3.4.1" minTargetSdk="13.0"/>
```

The Mintegral Maven repository is already declared in `CloudXDependencies.xml` and resolved automatically by the External Dependency Manager:

```
https://dl-maven-android.mintegral.com/repository/mbridge_android_sdk_oversea
```

After modifying the file, go to **Assets > External Dependency Manager > Android Resolver > Force Resolve**.

## iOS Info.plist Configuration

### SKAdNetwork IDs (Required for iOS 14.5+)

Mintegral's primary SKAdNetwork ID is required for attribution:

```xml Info.plist theme={null}
<key>SKAdNetworkItems</key>
<array>
    <dict>
        <key>SKAdNetworkIdentifier</key>
        <string>kbd757ywx3.skadnetwork</string>
    </dict>
</array>
```

<Note>
  Mintegral publishes a full list of partner SKAdNetwork IDs at [dev.mintegral.com/skadnetworkids.json](https://dev.mintegral.com/skadnetworkids.json). Adding these additional IDs improves attribution accuracy across Mintegral's demand partners.
</Note>

### App Tracking Transparency (iOS 14+)

```xml Info.plist theme={null}
<key>NSUserTrackingUsageDescription</key>
<string>This identifier will be used to deliver personalized ads to you.</string>
```

## iOS Project Configuration

**Linker Flags:** Add `-ObjC` to Other Linker Flags in Build Settings.

**Deployment Target:** Ensure your project's minimum deployment target is iOS 13.0 or higher.

## Support

For support, contact [mobile@cloudx.io](mailto:mobile@cloudx.io)
