Reputation: 1157
I can't seem to make eclipse recognize my Xperia E1 as an ADB device.
The problem is that in the devices list of eclipse it is detected but it says 427ac413 as serial number and the target is unknown. USB Debugging mode is on, I have tried both MSC and MTP modes, I rebooted the device, the ADB Driver is installed from PC Companion (although it says Sony so0107 and not so0101 as I have seen on some other forums). I'm thinking it could either be a driver problem, maybe the wrong one is installed, because the first time I installed it the adb driver said it was from Samsung, and I had to uninstall it and reinstall it.
Any suggestions on how to make it work?
Upvotes: 0
Views: 1267
Reputation: 9103
First, you may used the wrong driver, try to get it from here, here, or here.
Then, force the windows to reinstall the driver again:
Last, restart your adb:
adb kill-server
then adb start-server
.Upvotes: 0
Reputation: 1157
I have solved my problem by following these steps. The problem was that the SDK_HOME folder wasn't set properly and the PC wasn't authorised. So i disabled developer tools and enabled them again, revoked USB Debugging authorisations and then plugged it back in. The dialog appeared on my phone and then it all worked.
Upvotes: 0
Reputation: 6530
Here are some steps that may work.
USB Debugging mode
USB Debugging mode
on the phone, connect it in MSC.In case everything fails.
USB Debugging mode
with either the phone connected or not.PC Companion
or ADB drivers
If still resists, lets make sure that android connects:
adb devices
check that is online. If yes, its a matter of chance that eclipse recognize it. If no, you may have issues either with adb or with drivers (?).In case you have issues with adb. Some Companies install an adb in the Phone Suites in order to update phones or access phone data. This adb sets itself in installation at the PATH
and starts instead of the Android ADB which is for development. In this case you can run in cmd adb kill-server
navigate to android adb location and adb.exe start-server
.
In case of the drivers search the net for Xperia E1 android debug drivers
and start testing if anything works.
Upvotes: 1
Reputation: 5336
It seems that this issue can be fixed by manually updating the ADB driver through Windows Device Manager. There is a support thread on the Sony Experia Forum that discusses, and provides detailed steps for a solution, this issue:
http://talk.sonymobile.com/t5/Xperia-E-E-dual/ADB-driver-XPERIA-E/td-p/290337
Upvotes: 0