Reputation: 1871
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?
Upvotes: 31
Views: 36635
Reputation: 1224
"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.
Upvotes: 8
Reputation: 776
You can safely delete the Caches (Xcode will rebuild them, which will slow down Xcode in the beginning), the 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).
Upvotes: 36