
'`[FIRApp configure];` (`FirebaseApp.configure()` in Swift) could not find a valid GoogleService-Info.plist in your project. Please download one from https://console.firebase.google.com/.'
I already try to replace a new GoogleService-Info.plist to my project but it still having the same problem.
Make sure your plist file is:
Or try to add that file from Menu as below

I see the log states that No app has been configured yet.

Let's try add these lines of code in the beginning of your AppDelegate
if FirebaseApp.app() == nil {
let path = Bundle.main.path(forResource: "GoogleService-Info", ofType: "plist")
let firbaseOptions = FirebaseOptions(contentsOfFile: path!)
FirebaseApp.configure(options: firbaseOptions!)
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With