What is wrong with this script?
# Imports the monkeyrunner modules used by this program
from com.android.monkeyrunner import MonkeyRunner, MonkeyDevice
# Connects to the current device, returning a MonkeyDevice object
device = MonkeyRunner.waitForConnection()
#Reboot
device.reboot( None )
I also tried changing the bootloadType. Insted of the last line I tried with, device.reboot( bootloader ) and device.reboot( recovery ), but it didn t work either.