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
4
votes
1 answer

admob interstitial ad is never ready

i have this game and i created 3 funcions in my gameviewcontroller and here they are func getInterstitialAd(){ interstitial = GADInterstitial(adUnitID: "ca-app-pub-1782852253088296/5018877964") let requestInterstitial = GADRequest() …
Naeim Salib
  • 75
  • 1
  • 6
4
votes
1 answer

App Failing to Load Interstitial Ads on my real device

Test Interstitial Ads are working on my emulator. But they don't work on my real device. There was a problem getting an ad response. ErrorCode: 0 W/Ads: Failed to load ad: 0 I'm calling mInterstitialAd.show(); on onNavigationItemSelected Here is…
AresProductions
  • 508
  • 1
  • 9
  • 23
4
votes
5 answers

How to handle(close) Interstitial Ad during Espresso Tests

What is the correct mechanism to deal with Interstitial Ad during Espresso Tests? There is Interstitial Ad between two activities and I want to write an Espresso Test spanning both activities. Is there any way to close the Interstitial Ad during…
PunitD
  • 2,293
  • 1
  • 20
  • 29
4
votes
0 answers

AdMob Interstitial with Viewpager - Issues after dismiss

I have implemented AdMob interstitial when the viewpager fragments are swiped/ changed. Depending on a couple of conditions (primarily time driven), the requested interstitials are loaded during the swipe by calling the following code in the…
dejavu89
  • 754
  • 1
  • 7
  • 17
4
votes
1 answer

Why is my AdMob interstitial working fine in Xcode Simulator but not on my test devices?

So I have this app that has both an admob banner ad and an interstitial ad. The banner runs fine on all screens. The interstitial ad is only supposed to load on one screen -- and it loads fine when I test it in the Xcode simulator. But when I test…
user3147770
  • 203
  • 4
  • 16
4
votes
0 answers

Integrating Amazon Ads into Admob Mediation via Custom Events

Amazon is doing a promotion of $6 eCPM for interstitial ads in Sep, Oct, Nov. I'm wondering if anyone has successfully integrated Amazon Ad into your Admob Mediation using custom events. Amazon's website only shows how to show their ads first and…
jon_na_fun
  • 1,113
  • 2
  • 11
  • 19
4
votes
0 answers

Screen corrupt when trying to use banner & interstitial ads in same app

I'm trying to show banner ads and interstitial ads via admob on different screens of my app. But every time I switch from the activity showing interstitial ad to activity showing banner ad my screen gets corrupted. It works fine when I use only one…
Kshitij Aggarwal
  • 5,287
  • 5
  • 34
  • 41
4
votes
3 answers

How to call admob interstitial ad using swift, spritekit and xcode?

I've been looking all over for an answer to this and I've found lots of examples in objective C (google developer docs, etc.) and some answers in swift, but not using spritekit, and being a novice, I just haven't been able to bridge the gaps in…
user3147770
  • 203
  • 4
  • 16
4
votes
1 answer

Interstitial dfp ads not filling full screen on Android tablets

We are attempting to serve full page ads via DFP and AdMob to our Android app. We cannot get ads to fill the screen, ads will only appear in the predefined interstitial sizes, 320x480 for the 7inch device and 768x1024 for the 10inch device. How do…
4
votes
1 answer

iOS: full page interstitial ad shows black screen after close

I show a full screen advertisement with this code, which works showing a full page advertisement. The problem is that when I close the advertisement I just have a blank screen. It does not show my app anymore. My code: -(void)showFullScreenAd { …
MSU_Bulldog
  • 3,501
  • 5
  • 37
  • 73
4
votes
4 answers

How to implement Interstitial iAds in Swift(Xcode 6.1)

I am trying to figure out how to switch over from my banner view iAds to interstitial iAds in order to free up space for a tabbed controller. For some reason I am completely unable to find any resource for even getting started on these ads with…
4
votes
2 answers

Admob Interstitial loads but shows empty screen

I was trying to add Admob Interstitial to my Android App which is Displayed when someone leaves the Activity. import android.app.Activity; import android.os.Bundle; import android.util.Log; import android.widget.Toast; import…
Rushil Sablania
  • 526
  • 4
  • 15
4
votes
2 answers

iAd interstitial delegate methods doesn't get called

I want to use interstitial ads in my app, so I implemented all necessary delegate methods. The problem is, if I use [self requestInterstitialAdPresentation] to show the ad, only the interstitialAdDidLoad: method gets called. The…
appcodix
  • 342
  • 2
  • 15
4
votes
4 answers

Admob insterstitial display a black screen

Lately I am getting black screens when displaying Interstitial ads using admob. This is the screen I am talking about: Some time it works well and displays an ad correctly. This is the code I use: Class variable: private InterstitialAd…
Ton
  • 9,235
  • 15
  • 59
  • 103
4
votes
3 answers

Android - OnDestroy remove interstitial ad?

This question is asked more, but there are different solutions given and I honestly don't know what the best practice is here. I've got an interstitial ad like this (Google Admob SDK): private InterstitialAd interstitial; However the ad is delayed…
Gooey
  • 4,740
  • 10
  • 42
  • 76