Tutorial: Optimize AdMob ad frequency using Firebase

testing various ad frequencies and their impact on revenue and retention

Solution tutorial

Optimizing ad frequency while keeping a high-quality user experience can betricky, but Firebase offers tools that help you test and then make data-drivendecisions about optimal ad frequency.

  • Using Firebase, you can A/B test the performance of various ad frequencieswith asmall subset of users.

  • You can observe the test results and review recommendations from Firebaseabout which ad frequency is performing better with minimal impact onretention.

  • Once you're confident that the changes will likely have a positive impact,you can roll out the changes to more of your users with a click of a button.

What you'll learn

In this multistep tutorial, you'll learnhow to use Firebase to test variousfrequency caps forGoogle AdMob ads in your app. It usesinterstitial ads as the example test case, but you can extrapolate and use these same steps totest frequency capping forother ad formats.

This tutorial assumes that you already useAdMob in your app and that you'dlike to test whether changing thefrequency of an interstitial ad unit willhave an impact on your app's revenue or other metrics. However, if you don't alreadyuseAdMob in your app, that's ok! The steps in this tutorial can also helpyou understand what ad frequency you should use in your app.

Tip: If there's a term that you're not familiar with, check out theglossary at the bottom of this page.

Learn more about the business case and value for this solution in ourOptimizeAdMob ad frequency solution overview.

Products and features used in this tutorial

Google AdMob

Google AdMob enables you to create ad units with various ad frequencies or refresh rates that will be served within your app. When you linkAdMob with Firebase,AdMob sends ad revenue information to Firebase to improve ad strategy optimization.

Google Analytics

Google Analytics gives you insight into user engagement, retention, and monetization metrics like total revenue,AdMob revenue, purchase revenue, and much more. It also allows you to create user audiences and segments.

Firebase Remote Config

Firebase Remote Config enables you to dynamically change and customize the behavior and appearance of your app for desired user segments —all without publishing a new version of your app. In this tutorial, you'll useRemote Config parameters to control which ad unit is shown to your users.

Firebase A/B Testing

Firebase A/B Testing provides the interface and infrastructure to run product and marketing experiments in your app. It takes care of distributing experiment variants to users, and then performs statistical analysis to determine if an experiment variant is outperforming the control group based on your selected key metric, such as revenue or user retention.


Flowchart of solution and products used


Tutorial overview

Go directly to the step-by-step tutorial

  1. UseAdMob to create new ad unit variants for testing

    1. Create two new interstitial ad units inAdMob.

    2. Set theFrequency capping of each ad unit to an impressions per uservalue that you want to test.

    3. Implement the ad unit placements within your app's code.

  2. Set up an A/B test in theFirebase console

    1. Define testing basics, targeting, and the goals that the test will runagainst.

    2. Define test variants and set up theRemote Config parameter thatwill control which ad unit is shown to users in the test.

  3. HandleRemote Config parameter values in your app's code

    1. Use theRemote Config parameter in your app.

    2. Implement the logic for displaying the ad unit based on the parameter'svalue.

  4. Start the A/B test and review the test results in theFirebase console

    1. After starting the test and allowing it to run for a few days or weeks,check theFirebase console for whether the A/B test has a winningvariant based on the primary goal of the A/B test.

    2. Review the impact on secondary metrics for each variant to ensure thevariants didn't cause unintended negative impacts to those metrics.

  5. Decide whether to roll out the new ad unit with the updated ad frequency

    1. IfA/B Testing determines that the variant showing the new ad formatis the winner, you can start showing the ad format to all users targetedin the experiment, all users of your app, or to a subset of your users.

    2. If a clear winner isn't yet determined, you can either continue runningthe experiment to gather more data, or end the experiment if it'salready been running for a long period with inconclusive results.

What you'll need

  • Your own app (iOS, Android, or Unity project)

  • Your app registered as a Firebase App that's linked to anAdMob App(learn more)

  • Access to your app's associated AdMob account, with permissions to createnew ad units

  • Access to your app's associated Firebase project, with permissions to createand manageRemote Config andA/B Testing as well as to viewGoogle Analytics

  • Your preferred IDE

Glossary

View a list of common terms for this solution

  • AdMob revenue:AdMob network and open bidding revenue

  • IAP revenue: In app purchases revenue

  • Total revenue: Total revenue

  • Retention: Retention as a key metric in A/B tests is tracked as 1 day,2-3 days, 4-7 days, 8-14 days, or 15+ days user retention

  • Remote Config parameter: The configurable parameter used to controlwhich ad unit is show to users. In this guide, it will be an ad unit ID.

  • Baseline configuration: The as-is configuration in any particular A/B test— also known as the control. The control usually uses the default value fortheRemote Config parameter, but it can be configured to use a new controlvalue if needed.

  • Variant configurations: The variant configurations are the alternativeconfigurations with differentRemote Config parameter values that we wouldlike to test against the baseline configuration.




Step 1: UseAdMob to create new ad unit variants




Except as otherwise noted, the content of this page is licensed under theCreative Commons Attribution 4.0 License, and code samples are licensed under theApache 2.0 License. For details, see theGoogle Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2025-12-17 UTC.