eclipse執行android專案出現"The connection to adb is down, and a severe error has occured."的問題

BruceZhang發表於2015-03-26
  1. 問題描述:在eclipse執行android專案時出現以下資訊:
    [plain] view plaincopy
    The connection to adb is down, and a severe error has occured.
    You must restart adb and Eclipse.
  2. 配置adb環境變數:http://jingyan.baidu.com/article/17bd8e52f514d985ab2bb800.html
  3. cmd開啟DOS視窗:
    檢視adb狀態:
    [plain] view plaincopy
    adb get-state
    殺掉adb服務:
    [plain] view plaincopy
    adb kill-server
    開啟adb服務:
    [plain] view plaincopy
    adb start-server
    資訊如下:
    [plain] view plaincopy
    • daemon not running. starting it now on port 5037 *
    • daemon started successfully *
  4. 重啟eclipse, 執行你的android專案, 如果沒出意外的話, 問題應該可以解決了。OK, Enjoy it!!!

相關文章