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.

iOS Setup

Add Dependencies

Option 1: Swift Package Manager

In Xcode:

  1. In Xcode, select File > Add Package Dependencies.
  2. Add Boldwin SDK from:

    https://bitbucket.org/boldwin-sdk/boldwin-sdk-ios-public.git
    
  3. Add Boldwin AppLovin Adapter from:

    https://bitbucket.org/boldwin-sdk/boldwin-applovin-ios.git
    
Option 2: CocoaPods
  1. Open your project's Podfile and add this line to your app's target build configuration:

    pod 'Boldwin'
    pod 'BoldwinAppLovinMAXAdapter'
    
  2. In a terminal, run the following command:

    pod install --repo-update
    
Option 3: Direct Download

Download the Boldwin SDK and Adapter using the link below and embed it into your project:

 https://bw-sdk.s3.us-east-1.amazonaws.com/ios/boldwin-sdk/1.15.14/Boldwin.xcframework.zip
 https://bw-sdk.s3.us-east-1.amazonaws.com/ios/boldwin-sdk/1.15.14/BoldwinAppLovinMAXAdapter.xcframework.zip

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
    • iOS Adapter Class Name: BoldwinAppLovinAdapter

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>
    }
  ]
}

Note: - 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.