Search code examples
androidadmob

Is it possible to use more than one ad SDK in an Android app?


Recently updated my app and I want to know if I can use AdMob when I already have another ad SDK.

I'm currently using AdMob and Appodeal to monetize my App.


Solution

  • Definitely you can add more than one Ad SDK in project. Only thing you need to understand that how you are going to call/use that Ad SDK. Suppose you already have Ad SDK X and now you want to Add AdMob. Options:

    1. AdMob can be the primary Ad Source and X can be added as mediated Ad Source (If supported by AdMob)
    2. X can be the primary Ad Source and AdMob can be added as mediated Ad Source( If supported by X)
    3. If No SDK is primary Ad Source or (X and AdMob) are not in mediated Ad sources to each other then you need to manually write code to call Ads from these Ad Sources depending on Ad Load callbacks. Hopefully, this will help to understand , how these works!