Search This Blog

04 January, 2018

Using adb shell for dialing and receiving calls in android

You have to enable the Developer Options and also the USB debugging
We can use adb to trigger a call, receive incoming call, see the below adb commands
For dialing a call using activity manager adb shell am start -a android.intent.action.CALL -d tel:123456789
accept/receiving an incoming call: adb shell input keyevent 5
hang up/stop phone call: adb shell input keyevent 6

1 comment:

tmux enabling mouse interaction

Add the below line to the ~/.tmux.conf setw -g mouse on save the file and exit from the tmux shell, you should be able to use your mouse to ...