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
0
votes
0 answers

How to determine admob or chartboost interstitial is displaying?

If the interstitial is displaying now, then I don't need to show it again. Inmobi has the function: if(inmobInterstitial.state==kIMInterstitialStateActive) , how about admob and chartboost? I have integrated admob,inmobi and chartboost in my app. If…
Gank
  • 4,507
  • 4
  • 49
  • 45
0
votes
1 answer

MoPub android sdk onInterstitialLoaded never called

I tried to implement MoPub interstitials in my libgdx android application. When I pass a wrong ID in the MoPubInterstitial() constructor, the onInterstitialFailed() method in the listener is called correctly, but when I pass my correct ID nothing…
friede
  • 137
  • 8
0
votes
2 answers

How to use Admob InterstitialAd in Unity3d?

Prime31 plugin is not for free, I'm too poor to buy it. https://github.com/guillermocalvo/admob-unity-plugin plugin is good for admob banner, but doesn't support InterstitialAd. https://github.com/googleads/googleads-mobile-plugins is google's…
Gank
  • 4,507
  • 4
  • 49
  • 45
0
votes
1 answer

onPageFinished doesn´t work with ads

I'm trying to show interstitial ads in some urls of my webview app, including onPagefinished and url.contains, but it doesn´t work. Here's my code: @SuppressLint("SetJavaScriptEnabled") public class Juego extends ActionBarActivity { /** ID…
0
votes
1 answer

Android interstitial request

I'm trying to show Admob Interstitial in my android app when loading the next activity. But at the point at which my first activity is being paused to load the next activity the interstitial ad did not have time to load (due to slow internet speed…
user3930930
0
votes
1 answer

how to add Interstitial?

this is my activity, which i would add a Interstitial. I would make that if this activity is onPause for more than 30 seconds, at onResume i want to show the intestial. because through this activity and another, this application must open urls and…
john
  • 97
  • 1
  • 1
  • 9
0
votes
0 answers

Excessive memory use and CPU load when using Banner and Interstitial Ads

Memory When running my app and and looking at it's memory usage it uses around 20MB When I enable my banner ads, the memory usage starts at about 28MB and moves to around 50MB. On enabling my interstitial ads, memory usage approaches 80MB. CPU Load…
Zippy
  • 3,826
  • 5
  • 43
  • 96
0
votes
2 answers

How to call method in ViewController from SKScene

I created a method in ViewController.h called - (void)showFullScreenAd. I tried to call it inside my scene. I tried [self.view.window.rootController showFullScreenAd]. Can't find this method. I tried ViewController *vc = [[ViewController alloc]…
0
votes
1 answer

How to block InterstitialAd (GMS )in android apps (sdk 8)

Im not programmer and need your help. Im using Admob (InterstitialAd) in my app. SDK 8 does not support my GMS library. How to block Ad in apps with sdk 8. I found the code but dont know how to use it properly. if (android.os.Build.VERSION.SDK_INT >…
Patrik Ronaldz
  • 57
  • 1
  • 12
0
votes
1 answer

Showing AdMob interstitial as soon as it is loaded

In my onCreate, I have the code: interstitial = new InterstitialAd(this); interstitial.setAdUnitId("ca-app-pub-1852329945819279/4025192744"); // Create ad request. AdRequest adRequest1 = new AdRequest.Builder().build(); //…
djinne95
  • 275
  • 1
  • 3
  • 10
0
votes
1 answer

AdMob Interstitials onSaveInstanceState and Serializables Parcelable encountered IOException writing serializable object

Im saving an array of Serializables in a fragments onSaveInstanceState. This has caused no issues with regular fragment destruction such orientation changes. However when I attempt to display an interstitial ad it causes the application to crash.…
Gabe
  • 146
  • 7
0
votes
2 answers

Show Interstitial ads on a natural breaking point in game

I'm having trouble showing interstitial adds on a natural breaking point in my game. For now I'm able to load and show these interstitial adds, even when I'm changing activities. My main problem is that I can't decide myself when these adds will…
Riverside
  • 207
  • 1
  • 12
0
votes
3 answers

AdMob interstitial not showing up

The interstitial ad is not being shown... I have the play_services_lib included in the project and there are no errors. The following code is in my Activity: import com.google.android.gms.ads.*; import com.google.android.gms.ads.AdRequest; …
user3572325
0
votes
2 answers

java.lang.NoClassDefFoundError: com.google.android.gms.ads.InterstitialAd

I have tried everything that i can find on the net to resolved this issue. All i want is to play the ad once the activity starts but keep getting this error message.i have removed and added it couple of time as advised by many post but no luck.…
Ahsan
  • 195
  • 1
  • 20
0
votes
2 answers

How to show full screen ads on Exit?

I using SDL2 project for android. I try created small banner on enter and it works. but I need to show fullscreen ads on exit. I trying diffecent times, but iterstitial ads dosen't work anytime. My test code but it doesn't work: protected void…
JustOneMan
  • 231
  • 1
  • 9
  • 34