Skip to content

AppLovin MAX Adapter

This guide covers the integration of Boldwin SDK through AppLovin MAX platform. The Boldwin SDK supports the following ad formats:

  • Banner
  • MREC
  • Interstitial
  • Rewarded

AppLovin MAX Integration

For detailed AppLovin MAX setup instructions, see the official AppLovin MAX documentation.

Android Setup

Add Boldwin SDK to your app

Follow the integration guide.

Add to your app's build.gradle:

dependencies {
    // Boldwin SDK
    implementation 'com.boldwin.sdk:core:1.15.13'
    // AppLovin Boldwin Adapter
    implementation 'com.boldwin.sdk:applovin-adapters:1.15.13'
}

Configure Boldwin in MAX Dashboard

  1. Log in to your AppLovin MAX dashboard.
  2. Navigate to Manage > Networks.
  3. Click Click here to add a Custom Network.. Check out Custom Network Setup Guide for details.
  4. Add Boldwin with these details:
    • Network Name: Boldwin
    • Android Adapter Class Name: com.applovin.mediation.adapters.BoldwinAppLovinMediationAdapter

AppLovin Network

Configure Boldwin For Ad Units

  1. Edit your ad unit.
  2. Find Custom Networks tab and activate the Boldwin network.
  3. Set custom parameters with the required values.
  4. Save the ad unit.

AppLovin Ad Unit

Example of custom parameters:

{
  "placement_id": "<YOUR_PLACEMENT_ID>",
  "ad_sizes": [
    {
      "w": <WIDTH>,
      "h": <HEIGHT>
    }
  ]
}

The custom parameters include the following keys:

  • placement_id - The Boldwin placement ID. Required.
  • ad_sizes - An array of ad sizes. You can set multiple sizes. Required for banner and MREC ad formats. For interstitial and rewarded ads, sizes can be omitted.