I am doing the android test. And I need to know the way to use adb shell to run the test automatically. Does anyone know how to send an email with pictures attached via adb shell? like this:
am start -a android.intent.action.SENDTO -d sms:xxxx --es xxxxx
I would appreciate it if a complete example with subject and body is given. I have tried the following command, but it does not work.
-e stream "file:///sdcard/test.jpg" -t image/jpeg
am start -a android.intent.action.SENDTO -d sms:xxxx --es xxxxxto the DUT, some keyevents are also needed to send the SMS out. But if files are needed to be attached, more keyevents are required. For different phones the procedures are different. However, use the shell command directly would reduce number of the procedures. So I wanted to know the way to attach files. – Homer Aug 31 '11 at 13:10