Gbenga B Ayannuga
Gbenga B Ayannuga

Reputation: 2792

flutter stop in Compiling, linking and signing when building

i am trying to run my flutter project and it stuck in Compiling, linking and signing... when using Flutter run --verboseenter image description here

Upvotes: 0

Views: 774

Answers (1)

i88seven
i88seven

Reputation: 11

I had same problem.

There was some problem in ios/Runner.xcodeproj/project.pbxproj.

I resolved this problem like...

  1. Create another flutter project.
  2. Copy files in ios/Runner.xcodeproj.
  3. Paste to the problematic project.
  4. Fix PRODUCT_BUNDLE_IDENTIFIER and so on in project.pbxproj file.

Upvotes: 1

Related Questions