I just integrated Admob in my Android App.
I have confusion that, my app is kind of a live streaming app i.e. a user will be on the same activity for long time (in hours may be 1-2 hours).
And I have an adView I don't want that for the time duration user is in the activity my ad counts as only one impression
I looked for it. So here is my question
I am making new adRequest manually every 15 secs using
AdView mAdView = (AdView) findViewById(R.id.adView); AdRequest adRequest = new AdRequest.Builder().build(); mAdView.loadAd(adRequest);
will it count as new impression
Is there any certain time period like 30sec or something that my ad should be visible to count as an impression.
I read this article about automatic refresh rate, does it mean my app will be automatically refreshed without new adRequest and will it be counted as new impression Using automatic Refresh rate
Thanks