Android Interstitial Integration

Last Updated on: 19 Sep, 2023

Create Interstitial Object

INFO

If you miss to Initialize the SDK, this method will fail to return a response.

To implement an Interstitial bidder object for GAM follow:

Kotlin

val mesonGAMInterstitial = MesonGAMInterstitial("<Adunit Id>")

Java

MesonGAMInterstitial mesonGAMInterstitial = new MesonGAMInterstitial("<Adunit Id");

Fetch a Bid

To fetch a bid for GAM follow:

Kotlin

//Fetch bid by supplying publisher created DFP's AdManagerAdRequestBuilder instance

mesonGAMInterstitial.fetchBid(pubInstance, object : MesonAdFetchListener<AdManagerAdRequest.Builder> {
  override fun onComplete(obj: AdManagerAdRequest.Builder, error: Error?) {
    val adManagerAdRequest = obj.build()
    //Load with publisher created dfpInterstitial instance
    dfpInterstitial.loadAd(adManagerAdRequest)
  }
})

Java

//Fetch bid by supplying publisher created DFP's AdManagerAdRequestBuilder instance

mesonGAMInterstitial.fetchBid(pubInstance, new MesonAdFetchListener<AdManagerAdRequest.Builder>() {
  @Override
  public void onComplete(AdManagerAdRequest.Builder obj, @Nullable Error error) {
    AdManagerAdRequest adManagerAdRequest  = obj.build();
    //Load with publisher created dfpInterstitial instance
    dfpInterstitial.loadAd(adManagerAdRequest);
  }
});

WHAT'S NEXT

Next, let's Manage Demand and Configure your Ad Server.