Hello AGKers,
I have developed an app using AppGameKit 2, and added Admob Interstitial which seem to be working fine.
However there is a little problem I have:
The Interstitial keep repeatedly popping up, making it impossible to use the Application.
Basically, if I close the interstitial, it pops up again almost immediately.
I figured it has something to do with the refresh rate.
Here's the code:
device$=GetDeviceName()
myAdmobID$ = "ca-app-pub-xxxxxxxxxxxxxxxx/xxxxxxxxx"
If Left(device$,7)="android"
SetAdMobDetails("ca-app-pub-xxxxxxxxxxxxxxx/xxxxxxxx") //
//Create and Position the Advert
CreateAdvert(0, 1, 1, 0)
//Make Advert Visible
SetAdvertVisible ( 1 )
//Reload/Refresh Advert, call occasionally
RequestAdvertRefresh()
EndIf
//Then in the main loop
do
ShowFullscreenAdvertAdMob()
Sync
loop
Return
Does anyone know how to control the refresh rate of the pop up ads ?
Your help will be much appreciated.
Many Thanks
isgltd (2014)