skip to Main Content

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

2

Answers


  1. 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).

    Login or Signup to reply.
  2. "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

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search