web-dev-qa-db-ja.com

Android terminal--telnetにコマンドがありません、このエラーを受け取ります:KO:不明なコマンド、 'help'を試してください

エミュレートされたデバイスで座標を設定しようとしています。

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

問題は...

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

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

実際、私のコマンドのほとんどが欠落しているようです。

コマンドが欠落している理由を誰かが知っていますか?

17
James

あなたは認証されていません。

/Users/XXXXX/.emulator_console_auth_tokenのコンテンツを取得し、OKプロンプトの後に入力します

auth <auth_token>
27

私のようなアマチュアにとって、diego-torres-milanoの意味:

cat /Users/XXXXX/.emulator_console_auth_token
<copy the above contents - auth_token>
telnet localhost <portnumber> (mostly 5554)
auth auth_token
5
tharun