Xcode's output:↳note: Using new build systemnote: Building targets in parallelnote: Planning buildnote: Constructing build descriptionerror: Building for iOS Simulator, but the linked and embedded framework 'App.framework' was built for iOS. (in target 'Runner' from project 'Runner')Could not build the application for the simulator.Error launching application on iPhone 11.
Xcode >= 11.4
rm -rf ios/Flutter/App.framework
Run this command and run project again.
https://flutter.dev/docs/development/ios-project-migration
From the Flutter app directory, open ios/Runner.xcworkspace in Xcode.
In the Navigator pane, locate the Flutter group and remove App.framework and Flutter.framework.
In the Runner target build settings Build Phases > Link Binary With Libraries confirm App.framework and Flutter.framework are no longer present. Also confirm in Build Phases > Embed Frameworks.
4. Change the Runner target build settings Build Phases > Thin Binary script as follows:
/bin/sh "$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh" embed
/bin/sh "$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh" thin
5. In the Runner target Build Settings > Other Linker Flags
(OTHER_LDFLAGS) add $(inherited) -framework Flutter
Hope it helps!