AppLovin MAX SDK integration

Tip:
If you have any questions about ad revenue tracking with AppLovin MAX, please contact your dedicated account manager or send an email to support@adjust.com.

If you want to track your ad revenue with the AppLovin MAX SDK, you can use our SDK-to-SDK integration to pass this information to the Adjust backend.

Before you begin

To use this feature, you first need to download and set up the Adjust SDK for your platform. Follow the instructions linked below to get started.

⚙️ iOS SDK v4.29.2 and later / Android SDK v4.33.5 and later / Unity SDK v4.33.1 and later

Examples

Objective-CiOS
JavaAndroid
C#Unity
- (void)didPayRevenueForAd:(MAAd *)ad {
    ADJAdRevenue *adjustAdRevenue = [[ADJAdRevenue alloc] initWithSource: ADJAdRevenueSourceAppLovinMAX];
    [adjustAdRevenue setRevenue: ad.revenue currency: @"USD"];
    [adjustAdRevenue setAdRevenueNetwork: ad.networkName];
    [adjustAdRevenue setAdRevenueUnit: ad.adUnitIdentifier];
    [adjustAdRevenue setAdRevenuePlacement: ad.placement];
    //...
    [Adjust trackAdRevenue: adjustAdRevenue];
}

To see how this integration works in context, check out AppLovin's example applications.