I am connecting my Intex Aqua Y2 to my eclipse in Ubuntu 12 to run my android applications directly on the device. But it shows an invalid device when the avd manager runs. But as i see this link: http://developer.android.com/tools/device.html i don't see the the vendor id for my phone.
How can i then install its driver. Can i use any alternate Vendor ID? I tried installing the pc suit of it of windows platform through wine, but this didnt help.
Could anyone how i proceed on this? Do i need to write my own kernel?
Related
I have an orange nivo or "coolpad" but i can't connect it to the eclipse.. it just doesn't recognise it any suggestions?
I've tried to turn USB debugging on the phone still the same thing.
I've tried to update drivers from Drivers Manager.
Try to update drivers with drivers who are in your SDK at :
\adt\sdk\extras\google
It's work for my devices
may be your Android ADB drivers didn't get installed properly. You can refer this link
or you can try after market software like PDAnet which install all the mobile drivers including ADB drivers.
Just download the latest drivers for your phone from the manufacturer website. And turn on usb debugging in the dev settings
I have installed all required drivers of mobile. My device is able to detect in' adb device'. but while running application, my mobile device is not coming..
In "device" it is able to locate.
I have gone through: "Run-> Run Configuration-> target" but there is no any active device.
yeah, I experienced that too. The reason can be anything... Try updating you adb / usb drivers. Maybe you gonna need a vendor-specific usb-driver.
Last time when I had problems with detecting my Sony Xperia S, I solved them by turning USB Modem in Preferences on.
this issue solved...
I changed SDK folder with another latest version of SDK externally.
Restarted Computer. Configured device.
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.
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.
It can be because the driver isn't installed.
Go to Device Manager from Control Panel.
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.
Right Click on that 'android' button
click Update driver and chose latest driver from computer.
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:
Move your mouse pointer to the upper right-hand side of your
monitor. This will open the charm bar.
Click the Settings charm.
Click the Change PC settings link at the bottom of the Settings
menu.
Click the Restart now button.
Click Troubleshoot.
Click Advanced Options.
Click the Startup Settings.
Click the Restart button. Your computer will reboot.
After the reboot, press the [F7] key. This chooses the 7) Disable
driver signature enforcement option.
Login to Windows 8.
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. :)
You have to walk through these steps if you have an Android device from a small manufacturer with custom usb id.
Download the Google USB driver (Android SDK Manager -> Extras)
Find your device in Control panel -> Device manager
Click on Properties->Details and select Hardware identifier property. You should see something like USB\VID_2207&PID_0010&REV_0222&MI_01
Change sdk/extras/google/usb_driver/android_winusb.inf
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
Add the VID of the device to the end of
Users/%user%/.android/adb_usb.ini . Take care to the 0x hexa
notation!
# ANDROID 3RD PARTY USB VENDOR ID LIST -- DO NOT EDIT.
# USE 'android update adb' TO GENERATE.
# 1 USB VENDOR ID PER LINE.
0x2207
Remove all existing device drivers for the device
Turn on USB Debugging on your device
Plug in the device
Select manual installation of the driver
Select the driver from sdk/extras/google/usb_driver
Select Android Composite ADB Interface
Run adb kill-server
Run adb devices
Your device should show now up in the device list.
I'm using a Linux system (Xubuntu) to develop an Android app. I am using Eclipse to develop this app. I would like to be able to test on my Samsung Galaxy S3, but Eclipse cannot seem to find my device. There is nothing listed under the "Choose a running Android device" section.
I searched Samsung's website for USB drivers to the Galaxy S3, but I found none for Linux - only Windows and Mac. Where's the love for us Linux users? It seems absurd that there would be no USB driver for a Linux system to communicate with a Linux-based device. Is there a driver that I can use?
Did you try
adb kill-server
adb start-server
It is required to do the above in Linux. And also you should be logged in as root user,
https://stackoverflow.com/a/3129903/603744
Or if by any chance you haven't seen this question ,
Samsung Galaxy 7" (GT-P6210) not detecting for USB debugging?
You do not need usb driver for linux, Follow instruction from here. You need to add a file to rules.d
USB Drivers aren't required for Linux, which is why you can't find them.
To be able to deploy your application to your S3, you need to enable USB Debugging mode.
Home Screen -> Apps -> Settings -> Choose Developer options -> USB debugging
Home Screen -> Apps -> Settings -> Security -> Disable debug mode (turn this off)
Now connect your phone, and then run this command:
adb devices
It should list your device. Also, your Android notification area should show that debugging mode is enabled.
You'll now be able to deploy applications to it.
I also work on Ubuntu. You will have to set the USB Vendor IDs. Take a look on this link
I have a problem when I want to debug my application from eclipse using device (I use 9700 for debugging). It's used to be like this: the device is connected to Mac using usb cable, and automatically desktop manager pops up, gives sign that my device is successfully connected, thus I can debug my project from eclipse.
Now I can't do it like that anymore. when I connect the device to Mac, desktop manager (or Mac) doesn't detect my device. I use:
Desktop Manager 2.3.1 build 5
BlackBerry Java Plug-in Version: 1.5.2.201204302029
Does anybody know how I can make my device be detected again by the system?
You might compare the results from either of these two USB utilities:
/Applications/Utilities/System Profiler.app
/Developer/Applications/Utilities/USB Prober.app