List of utility methods to do Device Reboot
void | rebootDevice() reboot Device try { Process process = Runtime.getRuntime().exec("su"); DataOutputStream os = new DataOutputStream( process.getOutputStream()); os.writeBytes("reboot \n"); } catch (Throwable t) { t.printStackTrace(); |