Reputation: 119
After spending a lot of time, this issue is not solved. I am using karbonn a+1, and after installing all drivers and running adb kill-server
and adb start-server
, and then adb devices
, it is not showing the device on device chooser.
Upvotes: 0
Views: 1660
Reputation: 418
You have to walk through these steps if you have an Android device from a small manufacturer with custom usb id.
Copy
;Google Nexus One %SingleAdbInterface% = USB_Install, USB\VID_18D1&PID_0D02 %CompositeAdbInterface% = USB_Install, USB\VID_18D1&PID_0D02&MI_01
add new entry for your tablet. Change the VID and PID to your device's. (The ones in step 2.)
;Orion Tablet %SingleAdbInterface% = USB_Install, USB\VID_2207&PID_0010 %CompositeAdbInterface% = USB_Install, USB\VID_2207&PID_0010&MI_01
# ANDROID 3RD PARTY USB VENDOR ID LIST -- DO NOT EDIT. # USE 'android update adb' TO GENERATE. # 1 USB VENDOR ID PER LINE. 0x2207
Your device should show now up in the device list.
Upvotes: 0
Reputation: 1894
It can be because the driver isn't installed.
Now if there are some driver under Android Phone, then other setting might have caused that. Else, if your Android show small yellow mark, there is problem with the driver.
That should work. If you have bought new phone, like Karbonn, and you are tried of searching adb driver online, like I was, its actually on your own phone. Navigate to SD-Card on your phone and copy 'Pcdriver' to your desktop. Unzip it and update your driver selecting. Hope this helps.
If you on Windows 8, you may have to Disable Driver Signing before that:
Upvotes: 1
Reputation: 4942
You can do like this
Right click on your project.
select run as -> Run configurations.
select tab
target - > Choose always prompt to pick device.
this may solve your problem. :)
Upvotes: 0
Reputation: 37906
Did you enable 'USB debugging' on your device?
You can find this setting in the Development settings. If you need need information on how to enable it, check the android manual on using hardware devices.
Upvotes: 1