Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question

2 Answers

adb -s emulator-5554 shell am start -a android.intent.action.CALL -d tel:555-5555

share|improve this answer
this is dailing a number. but is there any way to pick up an incoming call? – Jimmy Wu May 4 '12 at 3:24
1  
i don't think that such a command-line exist whith adb you can simulate a call only with adb – K_Anas May 4 '12 at 3:36
2  
awesome, found a solution, adb shell input keyevent 5 – Jimmy Wu May 4 '12 at 6:21

Check the solution given by Agarwal in this link. I think this is what you are looking for.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.