module SimCtl::Command::Uninstall
Public Instance Methods
uninstall_app(device, app_id)
click to toggle source
Uninstall
an app on a device
@param device [SimCtl::Device] the device the app should be uninstalled from @param app_id App identifier of the app that should be uninstalled @return [void]
# File lib/simctl/command/uninstall.rb, line 9 def uninstall_app(device, app_id) Executor.execute(command_for('uninstall', device.udid, app_id)) end