1

The projects I was working was running fine until I upgraded my flutter version and xcode version now it works after doing flutter clean but any subsequent ios builds fails with the following error. I been trying to look for solutions but I found none. Will be really helpful if someone shared how to solve this issue.

Error output from Xcode build: ↳ [ ] 2023-05-18 08:27:33.217 xcodebuild[31393:1782938] Requested but did not find extension point with identifier Xcode.IDEFoundation.IDEResultKitSerializationConverter xcodebuild: error: Existing file at -resultBundlePath "/var/folders/x3/zv1948355lj7wtrfgg3vbmfr0000gn/T/flutter_tools.bAqZH1/flutter_ios_build_temp_dirbtKo5t/temporary_xcresult_bundle.xcresult" 
3
  • stackoverflow.com/a/72279812/6813907 could you please test this solution ? Commented May 23, 2023 at 7:04
  • can you please check "Command line tool" is installed or not? Commented May 24, 2023 at 10:33
  • Command line tools is installed and points to the XCode one Commented May 24, 2023 at 13:31

4 Answers 4

2
+50

First, download command line tools if you haven't yet. Then, remove the file that was displayed to you.

rm -rf /var/folders/x3/zv1948355lj7wtrfgg3vbmfr0000gn/T/flutter_tools.bAqZH1/flutter_ios_build_temp_dirbtKo5t/temporary_xcresult_bundle.xcresult 

This is untested. Hope it works. If it does not, please down(up)grade xcode and flutter to the latest stable version.

Sign up to request clarification or add additional context in comments.

2 Comments

This does not work. by the time it throws the error, none of that path exists, that is only temp path
What about recreating the project and copying the source files? @PedroLuz
0

i would suggest downgrading to Xcode 14.1 since is the most stable relase, i havent had any problem with flutter 3.10 releases

Comments

0

f it's a flutter project following step can be helpful:

Update MacOS Update Xcode and command lines tools Run flutter pub upgrade, flutter pub get in the project folder Delete podfile.lock in ios folder of the project Run cd ios, pod repo update, pod install in the project folder

Comments

0

in my case it's because i have a deleted dependency that still exists in ios build folder

i do flutter clean and rm -rf ios/DerivedData/ and then problem solved

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.