I’m having an error while running a flutter app, it comes to the end but it gets stuck with VM Services, i have the GoogleService-Info.plist and everything okay, anybody now what might still be the issue?
Question posted in Xcode
Whether you're new to Xcode or an experienced developer, our archive has everything you need to know about this integrated development environment (IDE). From basic functionalities to advanced features, our archive covers a wide range of Xcode-related questions and answers. Browse our archive now and find solutions to your Xcode questions, and take your app development skills to the next level
Whether you're new to Xcode or an experienced developer, our archive has everything you need to know about this integrated development environment (IDE). From basic functionalities to advanced features, our archive covers a wide range of Xcode-related questions and answers. Browse our archive now and find solutions to your Xcode questions, and take your app development skills to the next level
2
Answers
You can try adding
Firebase.initializeApp()
in the main.dart file. This solution worked for me.If you cannot find
FirebaseApp
in your project then please addfirebase_core
in yourpub spec.yaml
.Just Add
await Firebase.initializeApp();
Method in your main method, it will resolve your issue