In my objective-c
application, I added Google Analytics
using Pods
(this is how I add it: pod 'Google/Analytics'
). In the Pods
folder, I found those Firebase
packages FirebaseAnalytics
, FirebaseCore
and the FirebaseInstanceId
). When I run my application, sometimes it crash and this is what I'm getting in the console:
[Firebase/Core][I-COR000003] The default Firebase app has not yet been configured. Add [FIRApp configure] to your application initialization.
I don't call the Firebase classes anymore and I don't want to use them.
Why am I having Firebase
even if I didn't add them? Why am I having this error? How can I resolve this? If I delete the packages will that cause a problem?