我有运行Android 6.0.1(非root)的Blackberry Priv(STV100-1),启用了USB调试。
智能手机和PC都连接到同一台路由器(Priv关于“关于手机 - 状态”下的唯一数字IP地址是192.168.1.113)。
我使用命令提示符(以管理员身份运行)并从AppData \ Local \ Android \ sdk \ platform-tools adb start-server 运行ADB服务器。
1)如果smarphone通过USB 未连接到PC:
adb devices -l
% List of devices attached
% (empty)
ping -t 192.168.1.113
% Pinging 192.168.1.113 with 32 bytes of data:
% Reply from 192.168.1.113: bytes=32 time=297ms TTL=64
2)当我将智能手机插入电脑通过USB (PTP模式(照片传输))时:
adb devices -l
% List of devices attached
% 1162139011 device product:venicena model:STV100_1 device:venice
adb tcpip 5555
% restarting in TCP mode port: 5555
adb connect 192.168.1.113:5555
% connected to 192.168.1.113:5555
adb devices -l
% List of devices attached
% 192.168.1.113:5555 device product:venicena model:STV100_1 device:venice
% 1162139011 device product:venicena model:STV100_1 device:venice
ping -t 192.168.1.113
% Pinging 192.168.1.113 with 32 bytes of data:
% Reply from 192.168.1.113: bytes=32 time=165ms TTL=64
3)当我断开智能手机与USB连接到PC时
adb devices -l
% List of devices attached
% (empty)
ping -t 192.168.1.113
% Pinging 192.168.1.113 with 32 bytes of data:
% Reply from 192.168.1.113: bytes=32 time=266ms TTL=64
如果我 adb kill-server 并重新启动该过程,则没有变化 如果我 adb connect 192.168.1.113 ,则没有变化 如果我在MTP模式下通过USB将智能手机连接到PC(文件传输),则没有变化 如果我使用Pedro的 Android WiFi ADB - IntelliJ / Android Studio插件(https://github.com/pedrovgs/AndroidWiFiADB),则没有变化。
我做错了什么?我需要更改任何Windows防火墙/路由器配置吗?
感谢。