How to reboot device without using su (Superuser)?

638 Views Asked by At

I want reboot the device. i am able to do with root.using below code.

  public static void rebootDevice()
    {
        try
        {
            Process process = Runtime.getRuntime().exec("su");
            DataOutputStream os = new DataOutputStream(process.getOutputStream());
            os.writeBytes("reboot \n");
        }
        catch (Throwable t) {

            t.printStackTrace();
            }
    }

but boss told me try without using su . how to do that any help?

1

There are 1 best solutions below

4
On

Unfortunately its not possible if you neither have root permission nor your app is system app. If your app is a System app then you can do following:

In your Manifest file put following permission:

<uses-permission android:name="android.permission.REBOOT"/>

Use following code to restart:

PowerManager pm = (PowerManager) getSystemService(Context.POWER_SERVICE);
pm.reboot(null);