我正在使用 adb 发送短信。以下命令
./adb shell am start -a android.intent.action.SENDTO -d sms:12345 --es sms_body "the body" --ez exit_on_sent true
,虽然在 bash 中输入和执行,但它的工作,但我的 python 脚本似乎./adb
只调用:
ADB = './adb'
def callSMScmd(msg, num):
adbArgs = ('shell am start -a '
+'android.intent.action.SENDTO -d sms:'+str(num)+' --es'
+'sms_body "'+msg+'" --ez exit_on_sent true')
call([ADB, adbArgs])
正确的返回值是Starting: Intent { act=android.intent.action.SENDTO dat=sms:12345 (has extras) }
不幸的是,这个脚本列出了 adb 版本和所有可用的选项;没有警告,没有错误。提前感谢您的帮助