ADB Android Device Unauthorized

后端 未结 30 1743
伪装坚强ぢ
伪装坚强ぢ 2020-11-22 14:36

Since I reinstalled Eclipse (simply deleted and downloaded it again) I can\'t debug my applications on Samsung Galaxy i9001 (with CyanogenMod - Android 4.4.2). It worked fin

30条回答
  •  不要未来只要你来
    2020-11-22 15:25

    I just try adb kill-server, it works for me:

    PS C:\Users\languoguang> adb devices
    List of devices attached
    MKJ0117A19000186        unauthorized
    PS C:\Users\languoguang> adb shell
    error: device unauthorized.
    This adb server's $ADB_VENDOR_KEYS is not set
    Try 'adb kill-server' if that seems wrong.
    Otherwise check for a confirmation dialog on your device.
    

    kill and start adb server:

    PS C:\Users\languoguang> adb kill-server
    PS C:\Users\languoguang> adb start-server
    * daemon not running; starting now at tcp:12345
    * daemon started successfully
    PS C:\Users\languoguang> adb devices
    List of devices attached
    MKJ0117A19000186        device
    

提交回复
热议问题