Questions tagged [interstitial]

Full screen advertisements for Android and iOS applications.

Full screen advertisements for Android and iOS applications. Phones and tables for both platforms are supported.

An interstitial ad covers the entire device screen and can be dismissed.

812 questions
7
votes
1 answer

Is there any examples of how to implement full-screen advertisement for android?

Is there any examples of how to implement full-screen advertisement for android using AdMob? I have researched and found these tutorials: Getting Started with House Ads Google AdMob Ads Android Advanced EDIT - added some related questions: In…
Jan-Terje Sørensen
  • 14,468
  • 8
  • 37
  • 37
7
votes
6 answers

How to show interstitial Ad before launching new activity after clicking a menu button?

I use option menu button to go to second activity. When user click on that menu button interstitial Ad show after launching second activity. But I want to show interstitial Ad before launching second activity and when user click on close button of…
user3137451
  • 181
  • 1
  • 2
  • 16
7
votes
1 answer

Why dont my facebook interstitial ads show in my app?

Im in Swift and every-time I call them the delegate func didFailWithError gets called. Im using the same code I use for the facebook intersitial ads in all my apps and it works perfectly except for this new app I created. No ads pop up and I get a…
coding22
  • 689
  • 1
  • 7
  • 28
7
votes
0 answers

iAd iOS 7 delegate methods not getting called

If I create a new single view project in XCode 5.0.2, add the iAd Framework, implementing the ADInterstitialAdDelegate in ViewController.h #import #import @interface ViewController : UIViewController…
6
votes
1 answer

Why onAdDismissedFullScreenContent is being called lately?

I have created a function to show interstitial ad before showing another activity. It's working but onAdDismissedFullScreenContent is being called 2-3 sec lately after closing the ad. It causes previous screen to stand-by. There's a chance to…
Gouranga Das
  • 374
  • 3
  • 10
6
votes
1 answer

Why is there a delay between closing interstitial ad and opening the target activity?

I implemented this android code to load and show an interstitial ad and after closing the ad it will open the target activity, but my problem is there's a 3 seconds delay between closing and opening the target activity...here's my code: AdRequest…
Haxer87
  • 61
  • 2
6
votes
3 answers

Google AdMob interstitial in SwiftUI

I try to integrate Interstitial ad in swiftUI, I create the UIViewControllerRepresentable class and the UIViewController. https://developers.google.com/admob/ios/interstitial#show_the_ad But I don't know how to show the ad once the ad ready and…
Nicolas M
  • 475
  • 1
  • 7
  • 14
6
votes
1 answer

Having problems with an interstitial ad displaying modally in iOS13

Since running the iOS 13 beta I am having issues with my app displaying the interstitial view controller being displayed modally, therefore allowing the user to swipe down to dismiss the ad before the timer counts down. I understand that modal…
6
votes
1 answer

iAd interstitial not working on device

I am setting up my iAd interstitial like mentioned here. When I run my app on simulator, the interstitial runs fine. But when I try it on my test device (iPhone 4s), I get this error: Domain=ADErrorDomain Code=3 "The operation couldn’t be…
rgamber
  • 5,749
  • 10
  • 55
  • 99
6
votes
5 answers

How To preload AdMob interstitial ad and send to another android activity using intent

I need some help regarding AdMob interstitial ad. I want to preload the interstitial ad in one activity. this is straight forward. // Create an ad. interstitialAd = new InterstitialAd(this); interstitialAd.setAdUnitId(AD_UNIT_ID); …
ali abbas
  • 93
  • 1
  • 1
  • 6
6
votes
3 answers

Interstitial iAd has no close 'X' button

I am using Swift to implement interstitial ads into my app. I have managed to get it to show interstitial adverts, but there is no close 'X' button to get rid of the advert. Why is this?
user2397282
  • 3,798
  • 15
  • 48
  • 94
5
votes
3 answers

After updating Google Ads SDK InterstitialAd is deprecated, How to resolve?

After updating Google Ads SDK to 19.7.0 gives a deprecated warning message for InterstitialAd, while I searched this link for resolving the issue but not succeed. how can I resolve it? Here my code public void InterstitialAdmob() { …
Attaullah
  • 3,856
  • 3
  • 48
  • 63
5
votes
0 answers

Skip "open link in app" page when using firebase email link authentication

Is it possible to skip the following interstitial page when using Firebase Email Link Auth (passwordless)? Currently this page is shown regardless of whether the app is installed or not. I'd prefer to skip it and open the app directly if installed…
vin047
  • 260
  • 3
  • 12
5
votes
5 answers

Flutter firebase_admob show only once

The following code show the banner ad at the bottom of the application and show interstitial ad when click. Interstitial ad is shown when the button is pressed. The problem is, when the app start and click button for the first time, the interstitial…
Nyein Chan
  • 1,215
  • 2
  • 17
  • 32
5
votes
1 answer

InterstitialAd listener onAdClicked not working

All other listeners of InterstitialAd are working but only onAdLoaded not working. i have set toast for all listener but onAdLoaded only not getting called but other all are working correctly. why only onAdClicked() is not working what's wrong with…
lizzy sam
  • 105
  • 1
  • 8
1
2
3
54 55