How To Make And Receive A Call On Android Using ADB Commands From PC

Опубликовано: 19 Октябрь 2024
на канале: Sombex
4,387
28

How To Make And Receive A Call On Android Using ADB Commands From PC

Links:
Subscribe This Channel -    / @sombex  
Website: http:/pctrickszone.ml
Facebook Page:   / pctrickszone.ml  

Minimal ADB And Fastboot:
https://drive.google.com/file/d/0B0MK...
Universal ADB Driver: http://download.clockworkmod.com/test...

All Commands:
to dial a number (only dial, not calling)
$ adb shell service call phone 1 s16 "+6512345678"
Result: Parcel(00000000 '....')

if the dial was sucessful you will get like this ouput
Result: Parcel(00000000 '....')


to call on a number using ADB?
$ adb shell service call phone 2 s16 "+6512345678"
Result: Parcel(00000000 '....')

to send *101#

replace # with %23


to dial MMI/USSD code or dial '#' using adb??

$ adb shell service call phone 2 s16 "*101%23"