AdMob: advertising states receiving
Is there any helper functions for AdMob to check out:
- advertising displayed
- advertising was clicked
- advertising r开发者_如何学Pythonequest successful, but no advertising returned due to lack of ad inventory
On Android ?
Your Activity can implement AdListener in order to receive appropriate callbacks.
Callbacks are: onReceiveAd, onFailedToReceiveAd, onPresentScreen, onDismissScreen and onLeaveApplication.
See: https://developers.google.com/mobile-ads-sdk/docs/android/mediation/
When you have implemented the AdListener, in your callbacks you can insert some google analytics personal event to have a statistic.
精彩评论