79831042

Date: 2025-11-26 18:21:45
Score: 1.5
Natty:
Report link

Here is the full set of steps that solved the problem for me:

# Delete old build artifacts

rm -rf build

rm -rf ios/build

# Regenerate iOS-related files

flutter precache --ios

flutter pub get

# Rebuild (codesigning disabled)

flutter build ios --no-codesign

Eventually I discovered that the project could successfully build in Android Studio, and after that Xcode was also able to build it without errors.

Reasons:
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Dmitry Sergienko