我發現,它可能使模擬器設備上:如何模擬來電?
# connects to device
telnet localhost 5554
# set the power level
power status full
power status charging
# make a call to the device
gsm call 012041293123
# send a sms to the device
sms send 12345 Will be home soon
# set the geo location
geo fix 48 51
從here, 但是當我插入:
telnet localhost 5554
我得到以下幾點:
Trying 127.0.0.1...
telnet: Unable to connect to remote host: Connection refused
也許這沒有幫助我,因爲我需要僞裝成連接到計算機的真實設備。我需要一些adb shell命令。
你運行的操作系統? – jeprubio
我使用的是Ubuntu 16.10 – mordi
我發現我可以從真實設備調用: adb shell am start -a android.intent.action.CALL電話:1112223333,但我不想使用真實設備,只是假來電命令行 – mordi