When I tried to run the app, I don't see the phone listed on the connected devices list at all. I have connected the Samsung S3 GT-I9300, which is rooted using Kingo ROOT app downloaded from Google Play Store. I also have turned on developer options and the USB debugging. Still, nothing seems to work. I searched online and tried finding computer management to search for the phone listed under device manager. However, there's no mention of portable devices or other devices. Nevertheless, the phone is able to be charged. Is the problem caused by the USB cable? If so, which type of USB cable should I buy?
Try install ADB driver from here
and you can read manual here
Related
I'm trying to debug a Website in Chrome on an Android device. For this I'm following the official remote debugging guide.
Things are working up to 6. Make sure that Discover USB devices is enabled., but then in point 7. Connect your Android device directly to your development machine using a USB cable., the device is not showing up. Also on the device, I do not get the the Allow USB Debugging permission prompt as described in point 8.
The device has USB Debugging enabled, and Windows recognises the device.
I'm able to connect to the device using Android Studio, and then use Chrome remote debugging. But it looks like overkill to install several GigaBytes just to be able to clic ont the Allow USB Debugging permission prompt on the device.
What can I do to launch remote debugging without installing Android Studio ?
If you turn on Developer options on your Android device, you should be able to toggle USB Debugging from there. Download the standalone ADB package or install Android Studio. Run adb server in the command line. Connect it and then the prompt to accept the device's RSA key fingerprint should appear and you should be good to go.
The docs do a better job of showing the step-by-step process https://developers.google.com/web/tools/chrome-devtools/remote-debugging/
P.S. if you'd like to test this multiple times on the same two devices you can click Revoke USB debugging authorizations in the Developer options to revoke all previously connected devices' RSA keys.
For those landing here from Google: my problem was a bad cable shipped with the device (Samsung Galaxy A03). It only charged but did not transfer data. I bought a decent third-party cable and it started working.
I have samsung galaxy note 10.1 and model GT-N8000, I want to connect it to android studio and want to run my own made app. But my android studio not showing anything and even pc do not detect it , not even popping up notification to show me that some thing is connected. I check this device to other computers but got same thing.
So what could be a problem. I have done resetting , but nothing is helpful, Updated driver, installed the google driver for usb, installed the universal driver. But nothing is really helping. So at least pc should detect it but its not.
Any solution. ? Please help
Make sure, that you chose Connect as Camera or PTP on your phone.
Go to developer settings and activate Adb-debugging or USB-debugging.
Also check, whether you have installed the correct drivers. Try to reinstall the correct drivers.
And make sure that neither your USB cable nor your USB-drive is faulty. If so try to use another cable and different usb-drive.
You could also try to connect your phone wirelessly to Android Studio
Couple of things you can try -
Go to settings, developer options and turn USB Debugging on. If it's off, Android Studio will not detect your phone.
If you PC is not detecting your device, either your USB cable is faulty or your USB drive. Only way to know is connect your phone to another USB-Drive or connect it using another cable.
I need to use my phone as emulator/target/virtual device when I run my application. I have enabled the USB Debugging in Settings.
What more do I need to do to make Eclipse AVD Manager to detect my Byond B54 and Micromax devices? How to get in usb drivers for these devices?
You need to install the drivers for windows to detect those devices.
if the drivers for those devices from respective manufactures are not available,
you can download and use moborobo. It works for most devices. I have used it for Byond tablet.
This Link will help you with the list of all the companies and their links which provide USB drivers. Please note that some companies may not be listed in this list. In that case you may have to go to the respective website of the company and search for the particular device driver.
As you are saying that you have enabled the USB debugging mode in those devices. Check whether they are connected properly. open the command prompt and type:
adb devices
The result will give the list of the connected devices. If the device can be seen in the list then you can be sure that its connected properly. And you can install the app directly on the device by typing in:
adb install path_of_the_apk_file/your_apk_file.apk
But note that you can only install the app in this manner not debug it.
install pda.net on your system.this software mostly works with all devices.Search PDA.net on google and install it after downloading .
Are there any alternative ways to get it to work?
Even the adb command of android sdk doesn't detect my phone. Then some said I need to install the phone drivers first, I thought the phone automatically does it when plugged in while usb debugging is enabled, but it appears that it doesn't.
I searched for the driver, but was unlucky, it was not included in the memstick that came with the phone. Even the lenovo website doesn't provide it.
I am trying to debug on a USB connection to several different Sony tablets (particularly the P, which is listed as supported). I can debug on a smart phone, but the tablet doesn't show up as a connected device when I try to run my app in Eclipse. I have checked that the settings of the tablet have Applications->Unknown sources, and Applications->Development->USB Debugging
This is a fairly common problem. You basically don't have the drivers you need for USB debugging.
There are a few different ways I've had to obtain drivers for phones. The first way you should attempt is to go into the Android SDK and AVD manager and download the Google USB driver debug package.
This may or may not give you the driver you need. If it doesn't you will have to do one of two things. One, add the device details to the driver file you just downloaded. Generally these will be posted on forums/boards discussing your Tablet/Phone type. Secondly, you can download a different driver from another source like the Tab/Phone manufacturer.
Here a Youtube video how to install Sony Tablet S & P
Or the app you are developing has set the target higher than your tablet supports. Then it also won`t show up in the AVD Manager.
In case you wont get proper drivers for your tablet you can try adb over network.
Connect your device to wifi as well as your computer.
turn on ADB over network in Options for developers (maybe some ROM dont support it). Eventualy you can enable this using specific commands on your tablet.
on your computer run terminal and use: adb connect <ip>:<port> where <ip> refers to IP of your tablet and <port> refers to port on which adb is listening (usually 5555).
run adb devices to verify that device is connected