I am trying to reboot Android device through a activity. I'm using following code.
public void reboot(){
PowerManager pm=(PowerManager)getSystemService(Context.Power_Service);
pm.reboot(null)
}
And I have given Manifest permission too.
android:name="android.permission.REBOOT
Error::java.lang.SecurityException: Neither user 10098 nor current process has android.permission.REBOOT.