This is my experiences in using Admob services, as you might have know that I developed my App for quite time, and along the way after reached dozens of downloads, i immplemented Admob into my App. Some knowledge I gained using Admob services, especially the mistakes I’ve made when implemented the Ads.

Interstitial Ad

Much of my ads reveneu came from this type of ads, but you have to aware to not overdid your request of this ads. I got my ads traffic limited because my miss-implementation that caused may app to made Ad request too frequently. The balance is to give interval in between Ad request, and i am using 3-4 minutes interval and my match rate gone up.

Banner Ad

There are several type of implementation I’ve tried.

  1. Only using one instance of BannerAd and sharing it with all widgets. This is failed because it causing error saying that each admob widget must be given new instance of BannerAd.
  2. Using interval as Interstitial Ad implementation, the result is yet to know because i just implemented it. I will give update after one or two weeks to see the effets.

The main point is, do not too often make Ad request to Admob server, give it 3-4 minutes interval for Interstitial Ad and 1-2 minutes interval for Banner ad.

Update 9 November 2024

After publishing my latest update of my App with version number 1.3.1 containing patch that increase the banner Ads request inteval. I see my match rate gone up from 33% up to 49% till today. I expecting it will continue to go up because the way admob calculate the match rate is by averaging the last 28 days match rate, if I looking up the day by day match rate, it reaches 40 percents or more. So the conclusion is keep your ad request interval wisely, for banner Ad, 1-2 minutes interval is good, and for Interstitial Ad is 3-4 minutes interval is best according to my experiences.