Unhandled Exception: [core/not-initialized] Firebase has not been correctly initialized.
Usually this means you've attempted to use a Firebase service before calling `Firebase.initializeApp`.
View the documentation for more information: https://firebase.flutter.dev/docs/overview#initialization
갑자기 이런 에러가 뜨고, 화면이 흰 색 화면만 나온다면,,
Future<void> main() async {
WidgetsFlutterBinding.ensureInitialized();
await Firebase.initializeApp();
runApp(const MyApp());
}
보통은 initialzie
를 안 한 경우일 것이다.
이렇게 했는데도 안 된다면,, 아마도 google-services.json
혹은 GoogleServices-Info.plist
가 각각 {flutter-project}/android/app
, {flutter-project}/ios/Runner
에 제대로 잘 위치해 있는지 확인해 보시기 바랍니다.