lmiguelvargasf
lmiguelvargasf

Reputation: 69883

How to uninstall an app from iPhone simulator using the command line?

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

Answers (1)

Jeremy Huddleston Sequoia
Jeremy Huddleston Sequoia

Reputation: 23651

From terminal, run:

xcrun simctl uninstall booted <app identifier>

Upvotes: 11

Related Questions