androidclickadmobrewardedvideoad

Admob Video Reward clicks verification


I've a game with one rewarded video admob ad unit. Tested ok. after uploading to google play, there are lot of impressions but zero clicks.

my Questions: Is there any way to setup an event or statistics to calculate number of user clicks then compare to admob output? Your suggestions are highly appreciated. Thanks.


Solution

  • If you already have ads implemented via AdMob, easiest solution would be to integrate Firebase analytics and log individual video clicks like this:

    private FirebaseAnalytics mFirebaseAnalytics = FirebaseAnalytics.getInstance(this);
    // log an event
    Bundle params = new Bundle();
    params.putString("event_detail", myParam);
    mFirebaseAnalytics.logEvent("video_click", params);
    

    Insert the code above so that it gets executed when user clicks on a video and gets rewarded. This provides you the data that you can compare to your AdMob output.

    Relevant Firebase docs: https://firebase.google.com/docs/analytics/android/events

    I have a project with Firebase analytics and AdMob ads, here's what it looks like

    Analytics example