0

Team,

I am looking for an option to remove the unwanted old versions of simulator files. I have attached an image for reference, in the image you can see i have 3 variant of iOS 11 versions 11.0, 11.1 & 11.4

Simulator

How can i delete the unwanted ones from the list? I don't see any option in XCode. Does anyone figured this before?

2 Answers2

2

You can do it using commandline with simctl.

First list your simulators with:

xcrun simctl list

There will be UUIDs of your simulators. Then you can delete a simulator with:

xcrun simctl delete <UUID>

Here's the output of xcrun simctl help delete:

Delete specified devices, unavailable devices, or all devices. Usage: simctl delete <device> [... <device n>] | unavailable | all

Specifying unavailable will delete devices that are not supported by the current Xcode SDK.

0

There's a free Open Source App in the Mac App Store named DevCleaner for Xcode which can possibly help you with this task.