Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Which Xcode files can I safely delete?

Tags:

xcode

macos

Which of these Xcode files can I safely delete?

What are "BridgeOS Device Support", "Xcode Caches" and "Project Build Data and Indexes"?

I guess iOS Device Support are just simulators, correct?

enter image description here

like image 686
user14119170 Avatar asked Sep 03 '25 09:09

user14119170


2 Answers

You can safely delete the Caches (Xcode will rebuild them, which will slow down Xcode in the beginning), the Project Build Data and Indexes (which Xcode will also restore the next time you open the project/build the project where the data was deleted). From my understanding, iOS Device Support is for connecting your own device to the computer. Xcode will probably restore this as well, I would delete the iOS versions which you don't use. bridgeOS is for devices like the Touch Bar (according to Wikipedia).

like image 107
techrisdev Avatar answered Sep 05 '25 01:09

techrisdev


"Project Build Data and Indexes" is part of Xcode derived data. So once you delete derived data then it will be release space.

Goto Xcode -> Preferences -> Locations -> Derived Data.

enter image description here

like image 45
Piyush Avatar answered Sep 05 '25 00:09

Piyush