Admob full screen ads event

Hi,

I was wondering if there’s a way to know if the interstitial ads is clicked or closed? I’m trying to use admob but it seems there’s no documentation regarding how can I know if my ads is clicked or closed.

Revmob has this feature and it makes it easier to put the fullscreen ads anywhere in my app since I can always know when to resume the app.

Thanks

+1

Is there a way to know if an admob banner is clicked?

and for iAd too?

I would think that if the ad is clicked, your app would suspend and you should be able to detect it resuming.  Also do you get anything in your listener?

Rob

Yes, the app would suspend, but I can’t use the suspend event as banner clicking. The user might just press Home button to get to suspend mode.

I try to print all events from the listener, and I don’t get any event when I click on the ad.

local function adMobListener( event )     if (event == nil) then return end     print("adMobListener =\> event.provider = ", event.provider)     print("adMobListener =\> event.isError = ", event.isError)     print("adMobListener =\> event.type = ", event.type)     print("adMobListener =\> event.response = ", event.response) end

+1

Is there a way to know if an admob banner is clicked?

and for iAd too?

I would think that if the ad is clicked, your app would suspend and you should be able to detect it resuming.  Also do you get anything in your listener?

Rob

Yes, the app would suspend, but I can’t use the suspend event as banner clicking. The user might just press Home button to get to suspend mode.

I try to print all events from the listener, and I don’t get any event when I click on the ad.

local function adMobListener( event )     if (event == nil) then return end     print("adMobListener =\> event.provider = ", event.provider)     print("adMobListener =\> event.isError = ", event.isError)     print("adMobListener =\> event.type = ", event.type)     print("adMobListener =\> event.response = ", event.response) end