If you want to measure ad revenue with the AppLovin MAX SDK, you can use the SDK-to-SDK integration to pass this information to Adjust’s servers.
Examples
public void onAdRevenuePaid(final MaxAd ad) {
AdjustAdRevenue adjustAdRevenue = new AdjustAdRevenue("applovin_max_sdk");
adjustAdRevenue.setRevenue(ad.getRevenue(), "USD");
adjustAdRevenue.setAdRevenueNetwork(ad.getNetworkName());
adjustAdRevenue.setAdRevenueUnit(ad.getAdUnitId());
adjustAdRevenue.setAdRevenuePlacement(ad.getPlacement());
Adjust.trackAdRevenue( adjustAdRevenue);
To see how this integration works in context, check out AppLovin’s example Android application.