Reputation: 69883
I would like to uninstall or remove an iOS application from the command line. Let's say the application is call ApplicationName, so is there a way to do it from the command line?
Upvotes: 2
Views: 2558
Reputation: 23651
From terminal, run:
xcrun simctl uninstall booted <app identifier>
Upvotes: 11