Mohmed Anis Agwan
Mohmed Anis Agwan

Reputation: 51

My Xcode shows too many devices with different IDs, how to delete duplicate devices?

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.

Upvotes: 2

Views: 1072

Answers (2)

zeytin
zeytin

Reputation: 5643

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

Upvotes: 3

David Pasztor
David Pasztor

Reputation: 54706

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

Upvotes: 1

Related Questions