Reputation: 1
Welcome I'm having a problem running the app on ios and this is the error code
Launching lib/main.dart on iPhone 11 Pro Max in debug mode...
Running Xcode build... Xcode build done. 9.8s Failed to build iOS app Error output from Xcode build: ↳ 2022-08-14 16:34:22.736 xcodebuild[9219:98973] Requested but did not find extension point with identifier Xcode.IDEKit.ExtensionSentinelHostApplications for extension Xcode.DebuggerFoundation.AppExtensionHosts.watchOS of plug-in com.apple.dt.IDEWatchSupportCore 2022-08-14 16:34:22.737 xcodebuild[9219:98973] Requested but did not find extension point with identifier Xcode.IDEKit.ExtensionPointIdentifierToBundleIdentifier for extension Xcode.DebuggerFoundation.AppExtensionToBundleIdentifierMap.watchOS of plug-in com.apple.dt.IDEWatchSupportCore ** BUILD FAILED **
Xcode's output: ↳ Writing result bundle at path: /var/folders/37/ylwrs_293m1cdjjpb8mscp8c0000gp/T/flutter_tools.CCnmEB/flutter_ios_build_temp_dirVu9DVC/temporary_xcresult_bundle
Failed to package /Users/macbookshop/AndroidStudioProjects/flutter_aliii.
Command PhaseScriptExecution failed with a nonzero exit code
note: Using new build system
note: Planning
note: Build preparation complete
note: Building targets in dependency order
Result bundle written to path:
/var/folders/37/ylwrs_293m1cdjjpb8mscp8c0000gp/T/flutter_tools.CCnmEB/flutter_ios_build_temp_dirVu9DVC/temporary_xcresult_bundle
Could not build the application for the simulator. Error launching application on iPhone 11 Pro Max.
Upvotes: 0
Views: 954
Reputation: 2510
What I did when faced the same issue was:
pod clean
and pod install
.This worked for me
Upvotes: 0