Reputation: 13
Samsung Galaxy S4. USB debugging is enabled. I selected to always prompt for device. All drivers are up to date and installed. Device version is 4.2, min sdk version is 8 and target is 18. I have restarted eclipse, my computer, and my device. Still will not recognize my device. BTW using Windows 7. Any help is appreciated, thank you in advance.
SOLVED: Thank you for the suggestions everyone, plugged it in the next morning and it worked. Must have been a driver not installed, but I did unplug and plug in numerous times.
Upvotes: 1
Views: 12708
Reputation: 69005
If your android device is not showing up at all then either
You can check this case by running the command ./adb devices in the adt-bundle-windows-x86\sdk\platform-tools directory. I have added the detailed solution for this my personal blog post - Troubleshooting steps when Eclipse ADT does not recognizing your Android device.
If your android device is detected but is not recognized as in you are seeing something like ???? with no permissions
then you may want to restart your server. This is again explained with screenshots in my article Troubleshooting steps when an Android device is detected but not recognized by Eclipse ADT.
Upvotes: 1
Reputation: 617
Sometimes I have the same problem and I solve it thus:
Then, go to DDMS perspective and check what devices are connected. Your phone should appears now.
Upvotes: 0
Reputation: 945
I was able to see my device in the "Devices" window but when I tried to Run the project my device was not shown in the "Pick a device" window. What worked for me was re-plugging my device while I was on the "Pick a device" window and it showed up.
Upvotes: 0
Reputation: 664
I have this problem too, the problem was my windows firewall, I just change some Inbound and Outbound setting ( Firewall advance setting ) for abd.exe ( Emulator ) and problem fixed. Do it and reset your emulator. Hope this help you.
Upvotes: 0
Reputation: 3322
Restarting the adb server, Eclipse, and device did the trick for me.
C:\Android\android-sdk\platform-tools>adb kill-server
C:\Android\android-sdk\platform-tools>adb start-server
Upvotes: 1