Android terminal--telnet missing commands, receivi

2019-03-15 05:36发布

I'm trying to set the coordinates on an emulated device.

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

The problem is...

geo fix 77.9888 34.0000
    KO: unknown command, try 'help'

I don't seem to have the geo command

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

In fact, it looks like most of my commands are missing.

Does anyone know why the commands are missing?

2条回答
Explosion°爆炸
2楼-- · 2019-03-15 06:28

For amateurs' like me what diego-torres-milano meant :

cat /Users/XXXXX/.emulator_console_auth_token
<copy the above contents - auth_token>
telnet localhost <portnumber> (mostly 5554)
auth auth_token
查看更多
Fickle 薄情
3楼-- · 2019-03-15 06:41

You are not authenticated.

Obtain the content of /Users/XXXXX/.emulator_console_auth_token and after the OK prompt enter

auth <auth_token>
查看更多
登录 后发表回答