Reputation: 60231
In Android Studio, I could press
Shift-Ctrl-A and Enter, then the current App of the project (opened in Android Studio) will be uninstalled from the Emulator.
Is there an equivalent shortcut in Xcode for doing so?
Upvotes: 0
Views: 151
Reputation: 10475
Not a shortcut, but xcode's simulator control command line xcrun simctl
has options to uninstall an app if you know it's bundle id.
Some references for sim ctl:
https://medium.com/xcblog/simctl-control-ios-simulators-from-command-line-78b9006a20dc
You can create a keyboard shortcut or a service using this if you really need it.
Upvotes: 1