Does Xcode 13.4 and Flutter 3.0 work fine?

Viewed 1229

Previous version (Xcode 13.3 and Flutter 2.10) have some build time errors.

*xcodebuild[62848:6695836] 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 ***

4 Answers

Upgraded to xcode 13.4 and flutter 3.0. Getting the following error.

Error output from Xcode build:
↳
    2022-05-18 15:24:19.369 xcodebuild[2195:13656] 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-05-18 15:24:19.369 xcodebuild[2195:13656] 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 **

I double checked the environment. Reinstalled basic stuff from Terminal plus Xcode and Flutter and nothing. MacBook Pro M1.. and still stuck.

Downgraded flutter version to 2.8 and it seems working upto xcode v 13.4.1. Don't know why it doesn't working for higher versions of flutter.

latest xcode 13.4.1 and flutter 3.0.5 works fine

Related