0

I have a flutter app that ran fine. I run into a problem every once in a while where I cannot run the app.

Usually running flutter clean && flutter pub get && cd ios && pod install && cd .. would fix the issue. This did not work that time.

The error I get is: https://dsc.cloud/d061d0/output (was too long to put here).

My deployment target is set to 12.3 in Xcode.

The following didn't help:

Does anyone know how I can fix this?

2 Answers2

0

Have you tried deleting the Podfile.lock file before running that command?

caiopo
  • 454
  • 2
  • 8
0

I was able to fix it by excluding the "arm64" architecture in the excluded architectures in the Target inside the Runner.

See more here: https://github.com/flutter/flutter/issues/87985.