In IOS only, Firebase Core error: No implementation found for method Firebase#initializeCore on channel plugins.flutter.io/firebase_core #7342
Unanswered
YuvarajaCPR
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
My case
IOS Project calling function like
FlutterViewController* flutterViewController =
[[FlutterViewController alloc] initWithProject:nil
initialRoute:routeStr
nibName:nil
bundle:nil
];
flutterViewController.modalPresentationStyle = UIModalPresentationCustom;
[self presentViewController:flutterViewController animated:YES completion:nil];
Flutter Main function
Future main() async{
WidgetsFlutterBinding.ensureInitialized();
await Firebase.initializeApp();
runApp(MyAppState());
}
So need a solution for my case, but In Android project it is working fine
Beta Was this translation helpful? Give feedback.
All reactions