ADB Android Device Unauthorized

后端 未结 30 1742
伪装坚强ぢ
伪装坚强ぢ 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:28

    It's likely that the device is no longer authorized on ADB for whatever reason.

    1. Check if authorized:

    \platform-tools>adb devices
    List of devices attached
    4df798d76f98cf6d        unauthorized
    

    2. Revoke USB Debugging on phone

    If the device is shown as unauthorized, go to the developer options on the phone and click "Revoke USB debugging authorization" (tested with JellyBean & Samsung GalaxyIII).

    3. Restart ADB Server:

    Then restarted adb server

    adb kill-server
    adb start-server
    

    4. Reconnect the device

    The device will ask if you are agree to connect the computer id. You need to confirm it.

    5. Now Check the device

    It is now authorized!

    adb devices
    \platform-tools>adb devices
    List of devices attached
    4df798d76f98cf6d        device
    

提交回复
热议问题