Interstitial Ads

Create show and destroy interstitials

Use the following code to create an interstitial:

string interstitialIdentifier = BidappBinding.Instance.CreateInterstitial();

Use this code to show an interstitial:

BidappBinding.Instance.ShowInterstitial(interstitialIdentifier);

Call the following function to destroy interstitial:

BidappBinding.Instance.DestroyInterstitial(interstitialIdentifier);

Last updated