Reputation: 2882
I want to connect my Sony Xperia C4 E5333 to Android Studio for debugging my app, but Android Studio does not show my phone in ADB window.
I tried to install the USB driver for my phone but I can not find an USB driver for the E5333 model. In ADB, I have the Google USB driver installed. I installed Sony PC Companion 2.1, but when it tried updating, I got an error.
How can I connect my phone to Android Studio?
Upvotes: 1
Views: 2495
Reputation: 546
You need to install Sony driver for your phone, not Google USB Driver.
This one should do it: http://developer.sonymobile.com/downloads/drivers/xperia-c4-driver/
Also, you need to get to developer options and enable USB debugging. After that you are good to go.
Upvotes: 1
Reputation: 5236
Google Usb Driver
from SDK MANAGER > EXTRA
Device manager
.Other Devices
find your phone with a ? mark beside itBrowse My Computer For Driver Software
. You would see this screen,
Choose Let me pick from a list of device drivers from my computer. You would see this screen,
Choose Android Device
and click Next. You would see this screen,
Android Adb Interface
and then click on Have Disk
. You would see this screen,
if you still don't see your device type these commands in your cmd
adb kill-server
adb start-server
Upvotes: 0