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?
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:
Use following code to restart: