I have installed this three pods in my native iOS Swift/ObjC App:
pod 'Firebase/Core'
pod 'Firebase/Messaging'
pod 'Firebase/Analytics'
Here is call of config method:
func application(_ application: UIApplication,
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? = nil) -> Bool {
FirebaseApp.configure()
return true
}
I have this message in logs:
[Firebase/Core][I-COR000003] The default Firebase app has not yet been configured. Add `[FIRApp configure];` (`FirebaseApp.configure()` in Swift) to your application initialization. Read more: https ....
I don't know where is problem. I see similar in the Internet, but related with technologies like: React Native, Cordova, Flutter ... Any one have idea what happens in my native project?
I have double checked Google Info Plist files and configuration in the console and I have never had this type of behavior before.
Xcode Version 11.2.1 (11B500)