📪Interstitial Ad
Below are the steps to load and show an Interstitial ad on your app
Create your
AdRequestConfigurationas per the below format
val configuration = AdRequestConfiguration.Companion.builder(context, "Your_placement_name");AdRequestConfiguration.Builder configuration = AdRequestConfiguration.Companion.builder(context, "Your_placement_name");val configuration = AdRequestConfiguration.builder(context, "Your_placement_name")Call
loadAd()method as per below format
AdSterAdLoader.Companion.builder().withAdsListener(new MediationAdListener(){
@Override
public void onInterstitialAdLoaded(@NonNull MediationInterstitialAd ad) {
super.onInterstitialAdLoaded(ad);
//Show interstitial ad here
}
@Override
public void onFailure(@NonNull AdError adError) {
//Handle failure callback here
}
}).withInterstitialAdEventsListener(new InterstitialAdEventsListener() {
@Override
public void onAdClicked() {
//Handle ad click here
}
@Override
public void onAdImpression() {
//Handle ad impression here
}
@Override
public void onAdOpened() {
//Handle ad open here
}
@Override
public void onAdClosed() {
//Handle ad closed here
}
@Override
public void onAdRevenuePaid(double revenue, @NotNull String adUnitId,@NotNull String network) {
// Callback which provides revenue and the network which provided it
}
}).build().loadAd(configuration.build());AdSterAdLoader.builder().withAdsListener(object : MediationAdListener() {
override fun onInterstitialAdLoaded(ad: MediationInterstitialAd) {
super.onInterstitialAdLoaded(ad)
//Show interstitial ad here
}
override fun onFailure(adError: AdError) {
//Handle failure callback here
}
}).withInterstitialAdEventsListener(object : InterstitialAdEventsListener() {
override fun onAdClicked() {
//Handle ad click here
}
override fun onAdImpression() {
//Handle ad impression here
}
override fun onAdOpened() {
//Handle ad open here
}
override fun onAdClosed() {
//Handle ad close here
}
override fun onAdRevenuePaid(revenue: Double, adUnitId: String, network: String) {
// Callback which provides revenue and the network which provided it
}
}).build().loadAd(configuration.build())Inside the
onInterstitialAdLoadedcallback method invokeshowAd(activity)method ofMediationInterstitialAdobject to show AdSter interstitial ad above any activity as shown below
@Override
public void onInterstitialAdLoaded(@NonNull MediationInterstitialAd ad) {
super.onInterstitialAdLoaded(ad);
ad.showAd(getApplicationContext());
}
override fun onInterstitialAdLoaded (ad: MediationInterstitialAd) {
super.onInterstitialAdLoaded (ad)
ad.showAd(activity);
}Make sure to pass only Activity`s context as parameter to
showAd()
Last updated
Was this helpful?