Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save amodkanthe/6bfa357b145cd31857251da35ca62344 to your computer and use it in GitHub Desktop.
Save amodkanthe/6bfa357b145cd31857251da35ca62344 to your computer and use it in GitHub Desktop.
Show an Interstitial Ad.
private fun showInterstialAd() {
InterstitialAd.load(
this,
"ca-app-pub-3940256099942544/1033173712", //Change this with your own AdUnitID!
AdRequest.Builder().build(),
object : InterstitialAdLoadCallback() {
override fun onAdFailedToLoad(adError: LoadAdError) {
}
override fun onAdLoaded(interstitialAd: InterstitialAd) {
interstitialAd.show(this@MainActivity)
}
}
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment