skip to Main Content

I have too many simulators:

Huge list of different simulators each with a UUID string

I would like to delete the duplicate devices, but not sure where to do that.

2

Answers


  1. You can access your installed simulators under Window>Devices & Simulators in Xcode.

    Selecting the Simulators tab in this window, you’ll see a list of all installed simulators. If you select one or more simulators from the list, then press backspace (or right click, delete), you’ll be prompted to remove the simulator.

    delete simulator

    Login or Signup to reply.
  2. Go to your terminal and write this:

    xcrun simctl delete unavailable
    

    When updating Xcode, I used this command for obsolete Simulator versions and it cleaned up almost 50GB for me

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