Reputation: 19622
I want to add adMob to my iOS apps. I already have a firebase project created and the GoogleService-Info.plist
is already imported inside my project.
When adding the adMob pod what's the difference or better yet the pros and cons between using pod 'Google-Mobile-Ads-SDK'
and pod 'Firebase/AdMob'
for an already existing firebase project?
Upvotes: 2
Views: 1077
Reputation: 29582
The difference is that pod 'Firebase/AdMob'
will also include the FirebaseCore pod and the Firebase.h headers. See the Admob subspec definition in the Firebase subspec.
If there are already other Firebase pods in the Podfile, there will be no difference to what gets installed.
Upvotes: 2