Creative Debugger

You can examine comprehensive information about problematic ads that appear in MAX-mediated apps. To do this, incorporate the Creative Debugger into your test environments, QA processes, and support ticket systems.

The Creative Debugger displays a button in the application for five seconds after you complete a special gesture. (The video below describes this gesture.) If you then press the button that appears, a screen appears that displays a list of recently displayed ads. If you select an ad from this list, information displays about that ad (such as its mediated network and its creative ID). This gives you the information you need to report creative issues for that ad.

This gesture is available for all ads. It is enabled by default for both development and production builds.

To report issues with ads and to get help from the associated ad network, select the problematic ad and click the Report button. This creates an ad issue report. Send this report to the appropriate ad network partner. If the issue concerns AppLovin ads, send the report to your account manager or submit a ticket to AppLovin Support.

Disabling the Creative Debugger

The following code shows you how to disable the Creative Debugger with the MAX SDK:

[ALSdk shared].settings.creativeDebuggerEnabled = NO;

Using the Creative Debugger display API

You can display the Creative Debugger by making the following call:

[[ALSdk shared] showCreativeDebugger];

Creative ID

You can also retrieve the creative ID of displayed ads from mediated networks. You can do this either by using the Creative Debugger, or by using the MAX SDK. The following code shows you how to do this with the MAX SDK:

NSString *creativeIdentifier = ad.creativeIdentifier;

The table below indicates which ad networks, ad formats, and adapter versions support this feature. The Ad Callback column shows you in which ad callback the creative ID becomes available.

Ad networkAd formatsAd callbackiOS adapter version
AppLovinInterstitial, RewardedAd Loaded6.15.0
AmazonBanner, Interstitial, MREC, RewardedAd Loaded4.5.6.1
BidMachineBanner, Interstitial, MREC, Native, RewardedAd Loaded1.9.4.1.2
ChartboostBanner, Interstitial, RewardedAd Loaded8.4.0.1
DT ExchangeBanner, Interstitial, RewardedAd Displayed7.8.0.1
Google Ad ManagerBanner, Interstitial, RewardedAd Loaded7.69.0.1
Google Bidding and Google AdMobBanner, Interstitial, RewardedAd Loaded7.69.0.1
InMobiBanner, Interstitial, RewardedAd Loaded9.1.1.1
Liftoff MonetizeBanner, Interstitial, MREC, Native, RewardedAd Displayed6.8.1.3
Liftoff MonetizeBanner, Interstitial, MREC, Native, RewardedAd Loaded7.2.0.0
Meta Audience NetworkBanner, Interstitial, RewardedAd LoadedAll
MintegralBanner, Interstitial, RewardedAd Loaded6.7.5.0.1
PangleBanner, Interstitial, RewardedAd LoadedAll
SmaatoBanner, Interstitial, MREC, Native, RewardedAd Loaded21.6.10.1
YSO NetworkBanner, Interstitial, RewardedAd LoadedAll

Network name

You can also retrieve the name of the ad network that is responsible for an ad. The following code shows you how to do this with the MAX SDK:

- (void)didLoadAd:(MAAd *)ad
{
  NSString *networkName = ad.networkName;
}

- (void)didFailToDisplayAd:(MAAd *)ad withError:(MAError *)error
{
  NSString *networkName = ad.networkName;
}

Was this article helpful?
Was this article helpful?
search