Can I pick up a call by any adb command? I know that you can dial a number by "adb shell service call phone 2 s16 "+15084157509".
Can phone service do pick-up call or can I send some adb command to manipulate activity?
much appreciated
Can I pick up a call by any adb command? I know that you can dial a number by "adb shell service call phone 2 s16 "+15084157509".
Can phone service do pick-up call or can I send some adb command to manipulate activity?
much appreciated
Set the following property on far end to auto answer the incoming call in 2 seconds
To turn off auto answer,
adb shell input keyevent KEYCODE_CALL
To call
TelephonyManager.answerRingingCall()
useadb shell service call phone 5
command.adb -s emulator-5554 shell am start -a android.intent.action.CALL -d tel:555-5555
That works for me: