Is there a way to reboot an Android device using flutter Process.run()?

443 Views Asked by At

I want to create an app to restart my phone. My motivation for this is because my power button is broken. This is my current code (stderr doesn't print to console by default, only exceptions do):

  _reboot() {
    Process.run('reboot',['-p']).then((ProcessResult results) {
      print("stdout: \n" + results.stdout + "stderr:\n" + results.stderr);
    });
  }

Which outputs the error:

I/flutter (24139): stdout: 
I/flutter (24139): stderr:
I/flutter (24139): shutdown: Permission denied

So I have two questions:

  1. Can I run this command as a superuser? I checked, and the su and sudo commands don't exist on my Android version.
  2. If I root my phone, would this command work?
0

There are 0 best solutions below