#! /usr/bin/env monkeyrunner
from com.android.monkeyrunner import MonkeyRunner
device = MonkeyRunner.waitForConnection()
device.touch(240, 740)
device.type('5551234')
MonkeyRunner.sleep(3)
this works great The problem is when I have some white space like this:
device.type('55 5 12 34')
only '55' is printed
How can I print white space chars ?