user5620472
user5620472

Reputation: 2882

How can I connect my Sony Xperia C4 E5333 to Android Studio?

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

Answers (2)

Anton Tarasov
Anton Tarasov

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

Omid Heshmatinia
Omid Heshmatinia

Reputation: 5236

  • Get the latest Google Usb Driver from SDK MANAGER > EXTRA
  • Open Device manager.
  • in Other Devices find your phone with a ? mark beside it
  • Right click on it and choose Update Driver. You would see this screen, enter image description here
  • Choose Browse My Computer For Driver Software. You would see this screen, enter image description here
  • Choose Let me pick from a list of device drivers from my computer. You would see this screen, enter image description here

  • Choose Android Device and click Next. You would see this screen, enter image description here

  • Choose Android Adb Interface and then click on Have Disk. You would see this screen, enter image description here
  • Browse to where you installed your Sdk, SDK_PATH > extras > google > usb_driver
  • Click ok then next and your device installed !
  • if you still don't see your device type these commands in your cmd

    adb kill-server

    adb start-server

Upvotes: 0

Related Questions