Mercurial > hg > config
comparison bin/sms.sh @ 394:ff13c22effdf
doesnt work but lets pretend its worth keeping
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Mon, 29 Jul 2013 22:10:56 -0700 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
393:c328382f68ff | 394:ff13c22effdf |
---|---|
1 #!/bin/bash | |
2 # Send text through adb by Madura A. | |
3 # http://0xdeafc0de.wordpress.com/2012/01/28/send-sms-using-android-adb/ | |
4 # https://market.android.com/details?id=org.jraf.android.nolock | |
5 # Please use the above app(or similar) to keep it from locking while | |
6 # using this script | |
7 | |
8 adb shell /system/bin/sh /system/bin/am start -a android.intent.action.SENDTO -d sms:$1 –es sms_body "$2" –ez exit_on_sent true | |
9 sleep 1 | |
10 adb shell /system/bin/sh /system/bin/input keyevent 22 | |
11 sleep 1 | |
12 adb shell /system/bin/sh /system/bin/input keyevent 66 |