Home > Software engineering >  How to force a full rebuild in Xcode 13?
How to force a full rebuild in Xcode 13?

Time:11-18

I'm currently testing an onboarding flow in my app and I right now I'm having to delete the app from the simulator and build it anew with (cmd r for mac).

Is there a shortcut that exists to get the simulator to delete the app itself and fully rebuild?

edit: I'm having to delete as I'm saving things into UserDefault with AppStorage

CodePudding user response:

In the Simulator

Device > Erase All Content and Settings

That's the quickest way to give you a totally reset simulator ready for a clean app install.

  • Related