Method: ADB#remount

Defined in:
lib/ADB.rb

#remount(target = {}, timeout = 30) ⇒ Object

remount /system as read-write

:emulator, and :serial. seconds.

Parameters:

  • which (Hash)

    device to wait for. Valid keys are :device,

  • timeout (defaults to: 30)

    value for the command to complete. Defaults to 30



187
188
189
# File 'lib/ADB.rb', line 187

def remount(target={}, timeout=30)
  execute_adb_with(timeout, "#{which_one(target)} remount")
end