Module: SimCtl::Command::Uninstall

Included in:
SimCtl::Command
Defined in:
lib/simctl/command/uninstall.rb

Instance Method Summary collapse

Instance Method Details

#uninstall_app(device, app_id) ⇒ void

This method returns an undefined value.

Uninstall an app on a device

Parameters:

  • device (SimCtl::Device)

    the device the app should be uninstalled from

  • app_id

    App identifier of the app that should be uninstalled



9
10
11
# File 'lib/simctl/command/uninstall.rb', line 9

def uninstall_app(device, app_id)
  Executor.execute(command_for('uninstall', device.udid, app_id))
end