AppLovin MAX

Introduction

This guide walks you through setting up the HyprMX Android SDK as a custom ad network in AppLovin MAX mediation. See below for instructions on how to set up a new adapter or upgrade to newer versions.

Supported Ad Formats

  • Rewarded Ads

  • Interstitial Ads

  • Banner/MREC

Compatibility

  • HyprMX-MAX Adapter Version: 6.4.2.0

  • Compatible with AppLovin SDK: 12.4.2+

Find additional compatibility details on the Downloads page.

If you need support for older AppLovin versions, your HyprMX account manager is here to help.

Step 1: Add HyprMX as a Custom Network

1

In the MAX Dashboard, go to: MAX > Mediation > Manage > Networks.

2

Click "Click here to add a Custom Network" at the bottom of the page. The "Create Custom Network" page appears.

3

Enter the following details about the custom network:

  • Network Type: SDK

  • Custom Network Name: HyprMX

  • iOS Adapter Class Name: HyprMXAdapter

    • Keep this blank if you're only integrating with Android

  • Android Adapter Class Name: com.hyprmx.android.HyprMXMaxAdapter

Please note: iOS and Android Class Names must be entered exactly as indicated above.

4

Press Save to create the SDK network.

Step 2: Create Ad Units

💡Migrating from the MAX Legacy Adapter?

If you’ve previously set up HyprMX ad units using the legacy adapter, you’ll need to create new placements for the custom adapter.

To set up:

1

Open MAX > Mediation > Manage > Ad Units in the MAX dashboard.

2

Click the ad unit where you want to enable HyprMX.

3

Scroll down to the Custom Networks section and enable HyprMX.

4

Enter relevant information for each placement.

💡Migrating from the MAX Legacy Adapter?

To keep your reporting clean and seamless:

  • Use the same Distributor ID(s) you've been using with your current setup

  • Use the same Placement Name(s) as your current setup

  • App ID: Your Distributor ID (from your account manager)

  • Placement ID: Your Placement Name (from your account manager)

  • CPM Price: Desired floor price

5

If you're migrating from the legacy adapter, disable the legacy adapter under the Other Networks section.

6

Save and repeat these steps for each Ad Unit you'd like to configure.

💡Migrating from the MAX Legacy Adapter?

If you’re not yet ready to go live with the custom adapter:

  • Temporarily disable the HyprMX custom adapter before clicking Save.

  • This lets you save any configuration changes and come back later to complete the setup.

  • If you’ve already completed Step 5, remember to re-enable the legacy adapter to avoid disrupting monetization.

When you're ready to go live with the custom adapter:

  • Disable the legacy adapter, enable the custom one, and then Save.

  • Having both adapters enabled at the same time can cause delivery conflicts and impact revenue.

Step 3: Install Custom Adapter

This guide assumes you already have the AppLovin Android SDK integrated into your project. If not, refer to the AppLovin integration guide before proceeding.

Follow these steps to install the HyprMX custom adapter:

1

Open your existing application in Android Studio.

2

If you're migrating from the legacy adapter, remove the following dependency from your app's build.gradle file:

implementation 'com.applovin.mediation:hyprmx-adapter:+'
3

Add or update the following dependency to your app's build.gradle file:

dependencies {
    // Remove the old max adapter if migrating from the MAX-certified adapter
    // implementation 'com.applovin.mediation:hyprmx-adapter:+'
    // Add the new one below
    implementation 'com.hyprmx.android:HyprMX-Max:6.4.2.0'
}

Step 4: Test and Verify Integration

You can receive test ads by enabling test mode. When using the custom adapter, enable test mode before initializing MAX:

HyprMXMaxAdapter.enableTestMode();

We recommend putting HyprMX at the top of your waterfall during testing to ensure you receive ad requests.

Once the SDK is initialized, request an ad and confirm you see test ads. That’s it — you're integrated!

Don’t forget: Disable test mode before going live to start receiving live ads.

Need Help?

If you have any questions, your HyprMX account manager is just a message away!

License

By integrating the HyprMX SDK, you are agreeing to the End User License Agreement.

Last updated