skip to Main Content

flutter project not making build in Xcode getting this error No such module 'Flutter' while its proper set.

I have tried to run with the command line set flutter path then flutter clean, flutter pub get, then go to ios folder and run pod install, pod update and run flutter build ios. but getting

Swift Compiler Error (Xcode): No such module ‘Firebase’
/Applications/Jaydev_LMS%20/All_Flutter/SockerApp_Client%20/soccergeeks-mobileApp/ios/Runner/AppDelegate.swift:2:7

2

Answers


  1. If you are using firebase in iOS.You have to go through the documentation of setting up ios to flutter

    https://firebase.google.com/docs/ios/setup

    Or watch a tutorial to setup firebase cli in YouTube.May it solve your problem

    Login or Signup to reply.
  2. Follow this doc. I think you followed IOS installation from firebase instructions and you added import Firebase in AppDelegate.swift file. But you have to follow above-mentioned doc. It does not mentioned to modified AppDelegate.swift file.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search