Skip to content Skip to sidebar Skip to footer

Reboot In Recovery Android

I've finally managed to get the Reboot code work. I used following code : Runtime runtime = Runtime.getRuntime(); Process proc = null; OutputStreamWriter o

Solution 1:

If the version of the reboot command and the backend it calls on that device supports it, this may work:

String command="/system/bin/reboot recovery";

Realize of course that the minute you use the su program you are playing with unsupported modifications of android.

Solution 2:

Post a Comment for "Reboot In Recovery Android"