Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 580 Bytes

README.md

File metadata and controls

28 lines (19 loc) · 580 Bytes

CleanXcode

1. Reset Simulator content and settings

  • Launch Simulator
  • DeviceErase All Content and Settings...

2. Delete derived data

Delete content of: ~/Library/Developer/Xcode/DerivedData/

In the terminal:

rm -rf ~/Library/Developer/Xcode/DerivedData/*

You can create an alias, if you have ZSH w/ OhMyZsh you can type on your terminal:

echo "alias cleanXcode='rm -rf ~/Library/Developer/Xcode/DerivedData/*'" >> ~/.zshrc

Then delete the content of DeriveData folder by typing on the terminal :

cleanXcode