OnResumeAfterAd

Overview

Notifies that ad came back from fullscreen and that application should resume.

Warning

This callback is unreliable due to inconsistent use of callbacks in different ad network SDKs.

Syntax

OnResumeAfterAd(placementName)

placementName (REQUIRED)

string Unique name of placement. The same name will be used in gravite.net account.

returns void

Examples

AATKitBinding.OnResumeAfterAdDelegate += OnResumeAfterAd;

public void OnResumeAfterAd(string placementName) 
{
    Debug.Log("OnResumeAfterAd: " + placementName);
}

Last updated