Reputation: 20412
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
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