I've seen already that ddms
allows to send fake SMS messages or init fake calls on Android emulator. However I am not using emulator for development, but only real device connected with USB cable.
In developer preferences on my device I can allow to simulate SMS messages. Everything I know about that is to connect to the device (emulator) with telnet:
telnet localhost 5554
and send SMS message with
sms send 12345 Hello SO!
I cannot connect with telnet to the USB device - it just yels connection refused
.
I had forwarded ports with adb, got into device using telnet, but after calling sms send ...
it shows that sms
was not found.
Back to the merits of the SMS simulating - is it even possible to send any with adb/shell from PC to the USB device ?