web-dev-qa-db-ja.com

Android Studioはデバッガ用のローカル8602にバインドできません

8:41:01 AM Can't bind to local 8600 for debugger
8:41:23 AM Can't bind to local 8601 for debugger
8:41:24 AM Can't bind to local 8602 for debugger
8:41:26 AM Can't bind to local 8603 for debugger
8:41:30 AM Can't bind to local 8604 for debugger
8:41:36 AM Can't bind to local 8605 for debugger
8:41:42 AM Can't bind to local 8606 for debugger
8:41:46 AM Can't bind to local 8608 for debugger
8:41:48 AM Can't bind to local 8610 for debugger
8:41:50 AM Can't bind to local 8613 for debugger
8:41:57 AM Can't bind to local 8622 for debugger
8:42:41 AM Can't bind to local 8628 for debugger

8:41:01 AMデバッガーのローカル8600にバインドできません8:41:23 AMデバッガーのローカル8601にバインドできません8:41:24 AMデバッガーのローカル8602にバインドできません8:41:26 AMデバッガー8:41:30のローカル8603にバインドできませんAMデバッガー8:41:36のローカル8604にバインドできませんAMデバッガー8:41:42のローカル8605にバインドできませんAMバインドできません見つける

7
Prakash Samy

hosts ファイルも確認してください。

ホスト

127.0.0.1       localhost.localdomain   localhost
::1             localhost.localdomain   localhost

これらの行は強調すべきではありません。 ヒント

8
Yuri Misyac

コマンドを開いてテストする

cd ..\Android-sdk-windows\platform-tools
adb kill-server
adb start-server
3
Ahmad Aghazadeh

同様の問題がありました。私の問題は、hostsファイル(/ etc/hosts on macOS)に次の追加のlocalhostエントリがあったことです。

10.0.1.12    localhost

そのエントリを削除した後、デバッガが動作し始めました!

3
Alex B