Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I remove redundant iOS simulator entries from Xcode?

How do I remove all these extra simulators from my Xcode menu?

Redundant iOS simulators in Xcode

like image 230
Ilias Karim Avatar asked Aug 06 '15 23:08

Ilias Karim


2 Answers

If you want to do this quickly I'd recommend fastlane tools you can reset simulators with one line

fastlane snapshot reset_simulators

install fastlane tools

sudo gem install fastlane

Make sure, you have the latest version of the Xcode command line tools installed:

xcode-select --install

(https://docs.fastlane.tools/actions/capture_ios_screenshots#completely-reset-all-simulators)

And the command is

fastlane snapshot reset_simulators
like image 172
Luke Avatar answered Oct 21 '22 06:10

Luke


XCode > Window > Devices :

Then use the delete key or click the gear icon to remove simulators.

like image 40
l'L'l Avatar answered Oct 21 '22 08:10

l'L'l