“No connected devices” trying to connect my LG to my Ubuntu machine

I am trying to run the application that I created on my phone. I turned on USB debugging mode on my LG G3, but my Linux Machine and Android Studio say that there are no connected devices.

How to fix it? Did I forget something important?

+7
android linux lg connection usb
source share
5 answers

I had the same connection problem. Switching to "Send Images (PTP)" decided for me.

+40
source share

CD to sdk platform-tools folder

Check if adb sees your device

./adb

If it displays "List of connected devices" and an empty line below, restart adb as follows:

./adb kill-server./adb start-server

then restart the devices. / adb and see if the device picks up, for example, as follows:

List of connected devices xxxxxxxxxxx

0
source share

I had a similar problem with my Xperia S.

1) I installed adroid tools for adb on Ubuntu. (Usage: sudo apt-get install android-tools-adb android-tools-fastboot) 2) The selected MTP mode on my Xperia S. Debugging is disabled. Disconnected the phone from the system. 3) Enabled USB debugging, reconnected the phone and tried the "adb device" command from the ubuntu terminal.

Then he launched the adb daemon and listed my device. As soon as the device was pointed there, I started Android studio again and my phone was listed there.

Also, you might find it helpful: https://developer.android.com/tools/device.html Hope this helps.

0
source share

There is a well-written and detailed step-by-step guide on connecting your phone with Android Studio when starting Linux here:

http://esausilva.com/2010/05/13/setting-up-adbusb-drivers-for-android-devices-in-linux-ubuntu/

0
source share

After several hours, I just solved a similar problem minutes ago with the LG G3 on WINDOWS.

Perhaps my experience will help you.

First, DO NOT enable USB debugging. Secondly, install the OFFICIAL USB driver from LG (I don’t know if it is available on Ubuntu). Please make sure that the driver is working properly using any LG software. By the way, I do not think that LG is well versed in software. Third, enable USB debugging and release.

-2
source share

All Articles