Android: adb.exe problems with calling #
I try to call *100#
with the adb.exe program. I type the following in the command line:
adb.exe shell service call phone 2 s16 "*100#"
...but the telephone开发者_高级运维 calls number *100
, without # in the end, but I surely need it. How can I fix this?
You need to URL encode your phone number. So try this:
adb.exe shell service call phone 2 s16 "*100%23"
精彩评论