如果您尝试所有这些,那么尝试最后一个它对我有用
- 检查手机 ip 和关于手机并尝试以下命令
adb connect 192.168.1.4:2222
Check this link for more details
而且也无法正常工作,然后在下面尝试
开启 ADB 调试
您必须先在 Fire TV 设备上启用 ADB,然后才能连接到设备。
From the main (Launcher) screen, select Settings.
Select System > Developer Options.
Select ADB Debugging.
获取 IP 地址
您需要网络上 Fire TV 设备的 IP 地址才能将 ADB 连接到它。
From the main (Launcher) screen, select Settings.
Select System > About > Network. Make note of the IP address listed on this screen.
连接亚行
要将您的开发计算机连接到 Fire TV 设备,请使用以下步骤:
Open a command prompt or terminal window.
Change directory to your Android SDK platform-tools directory.
Run the following commands, where <ipaddress> is the IP address of the Fire TV device noted in the previous section.
adb kill-server
adb start-server
adb connect <ipaddress>
Note: On Mac OS X and Linux you may need to prepend ./ to these commands, like this:
./adb kill-server
./adb start-server
./adb connect <ipaddress>
If the connection was sucessful, ADB responds with the message:
connected to <ipaddress>:5555
Verify that the Fire TV device appears in the list of devices:
adb devices
ADB reponds responds with the message:
List of devices attached
<ipaddress>:5555 device