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 |
|||
|
|
|
adb -s emulator-5554 shell am start -a android.intent.action.CALL -d tel:555-5555 |
|||
|
Check the solution given by Agarwal in this link. I think this is what you are looking for. |
|||
|
|