Android终端 - telnet丢失命令,收到此错误:KO:未知命令,尝试'帮助'

Jam*_*mes 16 terminal command-line android geo

我正在尝试在模拟设备上设置坐标.

XXXX-MacBook-XXXXX XXXX$ telnet localhost 5554
Trying ::1...
telnet: connect to address ::1: Connection refused
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
Android Console: Authentication required
Android Console: type 'auth <auth_token>' to authenticate
Android Console: you can find your <auth_token> in 
'/Users/XXXXX/.emulator_console_auth_token'
OK
Run Code Online (Sandbox Code Playgroud)

问题是...

geo fix 77.9888 34.0000
    KO: unknown command, try 'help'
Run Code Online (Sandbox Code Playgroud)

我似乎没有geo命令

help
Android console command help:

    help|h|?         print a list of commands
    auth             use 'auth <auth_token>' to get extended functionality
    avd              control virtual device execution
    quit|exit        quit control session

try 'help <command>' for command-specific help
OK
Run Code Online (Sandbox Code Playgroud)

事实上,看起来我的大多数命令都缺失了.

有谁知道为什么命令丢失了?

Die*_*ano 26

您未经过身份验证.

获取/Users/XXXXX/.emulator_console_auth_tokenOK提示输入后的内容

auth <auth_token>
Run Code Online (Sandbox Code Playgroud)


小智 5

对于像我这样的业余爱好者来说,diego-torres-milano意味着:

cat /Users/XXXXX/.emulator_console_auth_token
<copy the above contents - auth_token>
telnet localhost <portnumber> (mostly 5554)
auth auth_token
Run Code Online (Sandbox Code Playgroud)