开发者

Android: adb.exe problems with calling #

开发者 https://www.devze.com 2023-03-08 21:17 出处:网络
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#\"

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"
0

精彩评论

暂无评论...
验证码 换一张
取 消