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:
- Can I run this command as a superuser? I checked, and the
su
andsudo
commands don't exist on my Android version. - If I root my phone, would this command work?