13

My LG G3 is not appearing in the device list for android studio. I'm on ASUS n550jk with Windows 10.

Things I have done:

  • USB Debugging Mode
  • Media sync(MTP)
  • Camera (PTP)
  • Google USB Drivers from Android SDK Manager
  • LG USB Drivers
  • Switching USB ports
  • Restarting PC

Nothing has worked. I got it to work a few months ago on Windows 8.1, but I can't remember what I did.

Linny
  • 333
  • 1
  • 2
  • 10
  • Try going through these steps. It helped me when i had issues http://stackoverflow.com/questions/24801676/lg-g3-device-not-recognized-by-eclipse – virtas Sep 03 '15 at 14:30
  • 1
    It only worked for me when setting it to MIDI Device under USB connection settings – ono Oct 31 '16 at 17:50

8 Answers8

26

As on Android 6.0 device & Windows 10 this worked for me. Steps 1 & 2 before attaching phone to computer.

1) Activate developers settings (Settings -> General -> About phone -> Software info -> Press 7 times "Build number" button). After that it says "Now you are an developer".

2) Go back to General settings and press "Developer options". After that find option "USB debugging" and tick that box. USB debugging

3) Attach phone to the computer via USB. Phone will ask "Allow this computer to access your phone data" "Allow". After that you should have "Tap for more USB options" -notification. Choose "Send images (PTP)"

Create "Hello World" -project as an test and try to to select deployment target again.

ponkape
  • 487
  • 8
  • 15
  • 2
    Thank you, you save my life. :) – Alvin John Nov 10 '16 at 03:34
  • 2
    Using PTP and not MTP made the difference between the phone saying it was in debug mode and the phone actually being in debug mode for me! – Ankhwatcher Oct 04 '17 at 12:47
  • Also Reboot your phone, Restart Adb (or Android Studio), Accept PC connection notification on phone. Device should now be visible in 'Select Deployment target Window'. – Zon May 30 '18 at 13:13
18

Make sure you enable developer options on your phone and check 'Enable USB Debugging'

On your Phone... Go to your settings: Go to "about phone" Tap on "Build Number" 7 times. This enables developer options Go to Developer options (in the settings app) Check - Enable USB Debugging Did you make sure to install the adb drivers for your phone? Also make sure you have enabled debug mode on your device. If neither of those are the issue, maybe check here for further troubleshooting help.

When you connect your phone to your computer with Android studio running, you should see a dialog box asking for permission for your computer to debug your phone. Tap Yes and accept those permissions.

You should be set from there! Hit 'Run' in Android Studio and you should be good to go.

Hit me up on here if you have any further questions!

Community
  • 1
  • 1
Muhammad Waleed
  • 2,517
  • 4
  • 27
  • 75
  • The support page for the [adb](http://www.lg.com/us/support) drivers in your first link led me to the right drivers. There are many other supposedly correct drivers I can download from other places but this one solved the problem. – Linny Sep 03 '15 at 17:03
4

Switch USB PC connection from MTP to PTP

Ankesh kumar Jaisansaria
  • 1,563
  • 4
  • 26
  • 44
3

LG G3 requires you to 1) Activate developer's mode 2) Enable USB debugging BEFORE connecting your phone to the laptop 3) Accept the computer's RSA fingerprint when installing an apk from AndroidStudio and most importantly 4) Installing the phone on your computer.

Use this link and select your model. Without installing this software you will still be able to charge your phone and access its memory from your laptop but for it to appear as a device in Android Studio, install this.

Varun Agarwal
  • 1,587
  • 14
  • 29
  • This is correct for me. For the G3, I actually had to download the correct drivers on the LG site before ADB could recognize it in Android Studio. – AshesToAshes Jan 16 '17 at 11:58
  • Thank you for highlighting the need to enable USB debugging BEFORE connecting the phone. Somehow, after an hour of trial, that did the trick for LG G2 Mini d620-r. – lidkxx Jun 22 '17 at 09:34
1

I had a similar problem shortly after upgrading to MarshMallow. I had developer options on, but the "USB Debugging" option was disabled.

T.D. Smith
  • 984
  • 2
  • 7
  • 22
0

I had a problem with connection LG G4 phone with Android Studio, and try lots of combination like enabling developer mode, USB debugging, switching USB PC Connection from MTP to PTP and vise versa, restarting phone...But no csucces until I downloaded and installed Windows USB driver from this location http://www.lg.com/in/support/software-firmware and choose LG G4 Stylus. My phone is LG G4 Leather dual sim, but works with selection above.

0

you should go to settings->Common->Software info and click Build number 7 times in LG G3

Nagibaba
  • 4,218
  • 1
  • 35
  • 43
0

Had the same problem with my LG G7, this page helped me solve it.

Essentially, what was missing, besides enabling USB Debugging, was enabling USB Tethering. For that:

  1. Look for "tethering" in your settings search bar.
  2. Enable it after clicking on the first option.
  3. Now your LG G7 should appear as LM G710 (mobile) under your devices Android Studio dropdown menu. Select it as your current main device.
  4. Run your main.dart with the play button (or flutter run on the terminal). It will also appear as an available device in VS Code if you prefer it as your IDE.
Philippe Fanaro
  • 6,148
  • 6
  • 38
  • 76