Reputation: 3682
I am new in Firebase. According to their setup guide for iOS, when I'm creating new app to configure Firebase in console, I should add pod 'Firebase'
in the podfile.
It was also mentioned that by default, this pod includes firebase-analytics
. But then what is the use of pod 'Firebase/Core'
? Since it also includes Analytics.
I'm really confused. Do I need to include pod 'Firebase/Core'
too?
Upvotes: 4
Views: 2284
Reputation: 29582
You don't need to include pod 'Firebase/Core'. Core is the default subspec for pod 'Firebase' and will be automatically included from pod 'Firebase'. With the current Firebase pod organization, the purpose of Core is to include Analytics. This may change in the future.
Details in the podspec.
Upvotes: 2