不知道爲何,每次鏈接手機,都提示 adb server is out of date,偶爾也會提示not foundwindows
每次去百度,都好多方法~~~終於有一種方法很是靠譜,遂,記錄之~~~tcp
問題一:out of date調試
問題描述server
一、鏈接手機進程
二、進入windows 的cmd,輸入adb devices開發
三、提示「adb server is out of date」cmd
問題緣由:百度
啓動端口被佔用date
解決方案:方法
一、查看啓動端口是否被佔用
輸入:adb nodaemon server
返回:cannot bind 'tcp:xxxx'---------------------xxxx是端口號,通常是5037
二、查看是哪一個進程佔用了xxxx這個端口
輸入:netstat -ano | findstr "xxxx"
返回: tcp 127.0.0.1:xxxx xx.xx.xx.xx:xx LISTENING pid
三、殺掉PC上的這個進程,便可。
問題二-----------not found
問題描述:
一、鏈接手機
二、提示not found
問題緣由:
可能未開啓調試模式
解決方案:
打開手機設置,打開開發者設置,打開調試模式,便可~