ThanosFisherman
ThanosFisherman

Reputation: 5859

Difference between Admob Ads and Firebase Ads

I'm trying to migrate from Google analytics to the new Firebase analytics but I noticed there are libraries for ads too. Are firebase ads going to replace admob ads as well? Should I keep using admob via google play services? Or make a switch to the Firebase SDK? What's the difference anyways?

Upvotes: 45

Views: 19603

Answers (3)

smileface
smileface

Reputation: 56

I used to use https://github.com/unity-plugins/Unity-Admob

Later, use https://github.com/unity-plugins/Firebase-Admob-Unity

Found no difference between the two, they use the same admob library, the same

code to achieve. Firebase just retains a previous admob interface

Upvotes: 2

Ian Barber
Ian Barber

Reputation: 19970

Happily, these are the same thing! The 'firebase-ads' dependency just brings in the existing 'play-services-ads' library and the 'firebase-analytics' library. The Firebase SDK is part of Google Play services, so no need to worry about migrating, just update to the latest version.

Exactly as Kastriot says, the main integration is between Firebase Analytics and AdMob, but the AdMob SDK is still the same service you're already familiar with.

Upvotes: 40

Kastriot Dreshaj
Kastriot Dreshaj

Reputation: 1121

Linking your app(s) to Firebase enables Firebase Analytics and AdMob to work together more closely. By choosing to link your app to Firebase, you allow more of your Analytics data to be used by AdMob independent of your Firebase Analytics Data Sharing Settings.

Check Admob - Google Support for more information and Admob - Firebase

Upvotes: 3

Related Questions