skip to Main Content
Running pod install...                                           2,087ms
Running Xcode build...                                                  
 └─Compiling, linking and signing...                            ⣻

flutter build ios command is always stuck at └─Compiling, linking, and signing… ⣯

3

Answers


  1. Chosen as BEST ANSWER
    1. new create a flutter
    2. copy lib and assent file
    3. add dependencies
    4. flutter ios build

  2. make a backup of the project and try this

    1. delete iOS folder
    2. flutter create (new project with same name)
    3. copy iOS folder to the replace deleted file
    4. flutter clean
    5. flutter run
    Login or Signup to reply.
  3. I have ran into the same issue after running flutter build ipa. I honestly do not know what caused the problem.

    However, killing the process, restarting my computer, and running the process again seemed to have fixed the issue for me.

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