How to connect the device to Eclipse?

前端 未结 13 1851
予麋鹿
予麋鹿 2020-12-01 17:15

I am not able to resolve this simple issue.

I am trying to connect my device to Eclipse via USB cable.
On my PC, I have installed Eclipse and the Android SDK and

13条回答
  •  被撕碎了的回忆
    2020-12-01 18:11

    If you have required options enabled on your phone (USB Debugging and Unknown Sources) you can try do this. On your computer open command console. Using cd navigate to your android sdk installation folder. Go to platform-tools. You should have there adb file. Run this

    ./adb kill-server
    

    and then

    ./adb start-server
    

    Then check plugged devices

    ./adb devices
    

提交回复
热议问题