How to prevent the toasting process
When I execute this code
try {
process = Runtime.getRuntime().exec(new String[]{"su", "-c", "reboot bootloader"});
process.waitFor();
} catch (Exception e) {
e.printStackTrace();
}
it creates a Toast " reload bootloader "
I believe SuperSU is showing toast.
how can i prevent it.
+3
Pzy64
source
to share
No one has answered this question yet
Check out similar questions:
3295
2284
1844
1002
935
703
702
551
299
45