Daniele B
Daniele B

Reputation: 20412

Firebase/Android: what to include to use AdMob package

What should be included to use AdMob after the Firebase integration?

is it enough this:

compile 'com.google.firebase:firebase-ads:9.0.2'

or should this still be included?

compile 'com.google.android.gms:play-services-ads:9.0.2'

Upvotes: 1

Views: 233

Answers (1)

Gevaria Purva
Gevaria Purva

Reputation: 552

Use compile 'com.google.firebase:firebase-ads:9.0.2' for integrating adMob using firebase.

compile 'com.google.android.gms:play-services-ads:9.0.2' will not include firebase integration.

Upvotes: 2

Related Questions