LG exited the smartphone business in 2021 but tens of millions of LG phones remain in active use. Connecting an LG Android handset to a Windows PC for ADB, Fastboot, or firmware backup still requires LG's USB driver. This guide covers installation via LG Bridge and via standalone driver, along with fixes for the most common Device Manager errors on Windows 10 and 11.
LG distributed its USB driver in two ways:
LG Bridge is LG's PC companion application. Installing LG Bridge installs the USB driver as a component. LG Bridge also provides a backup and restore function, firmware update capability, and content management. However, since LG exited the smartphone market, LG Bridge may no longer be available from LG's official servers depending on when you are reading this. If it is unavailable, the standalone driver is the alternative.
Standalone LG USB Driver is a smaller package containing only the INF and SYS files without the full Bridge application. This is the preferred option if you only need ADB and Fastboot and do not want the companion software overhead. The standalone driver can sometimes be found in the LG developer resources section or through the Android SDK's Google USB Driver (which handles ADB mode for LG devices under standard Android USB hardware IDs).
If neither LG-specific source is available, the Google USB Driver (installed via Android Studio SDK Manager) covers ADB mode for LG devices running Android 4.4 and later. LG used standard Android USB hardware ID ranges that fall within the Google driver's INF bindings.
If you have the LG Bridge installer (LGBridge_Setup_*.exe), the installation process installs the USB driver automatically:
LG phones use the standard Android Developer Options path with one common twist: the Build Number to tap is sometimes under a Software Info submenu rather than directly under About Phone.
Navigation on most LG Android 8 and later models: Settings > General > About Phone > Software Info > Build Number. Tap Build Number seven times. Developer Options appears under Settings > General > Developer Options. Enable USB Debugging.
On LG V series and G series phones running Android 10 and 11, the path is slightly different: Settings > System > About Phone > Build Number, and Developer Options appears under Settings > System > Developer Options. If in doubt, use the Settings search function and type "build number" to locate it directly.
After installing the driver and enabling USB Debugging:
adb devices. The first run triggers the authorization dialog on the phone.adb devices again. The output should show the device serial number followed by device.Quick functional test:
adb shell getprop ro.product.model
This returns the model string, for example LM-G900 for an LG Velvet or LM-V600 for an LG V60 ThinQ. A clean response confirms end-to-end ADB communication.
Entering Fastboot mode on LG phones varies by model. The most common method:
Note that LG uses the term "Download Mode" for its proprietary LAF (LG Android Flash) protocol on some older models, which is different from standard Android Fastboot. The regular fastboot command works with LG's standard Fastboot implementation, but some older LG G and V series models require LAF for firmware flashing instead. If you run fastboot devices while the phone is in Download Mode and see an empty list, the phone may be in LAF mode rather than Fastboot mode.
For Fastboot mode specifically on LG phones that support it (G6, G7, V30, V40, V50, and later): boot normally into Android, then use:
adb reboot bootloader
The phone will reboot into a screen showing "Fastboot Mode" text. Run fastboot devices to confirm it is detected. If the Fastboot driver is not yet applied, look in Device Manager for an unknown device entry when the phone is in this mode, and apply the LG driver to it.
"LG Mobile USB Modem" shows a yellow warning triangle after LG Bridge installation: This entry is for LG's modem interface (used for some carrier features), not the ADB interface. The warning on the modem entry does not affect ADB functionality. The ADB device should appear separately under Android Device or as a subentry without a warning. If only the modem entry is visible, disconnect and reconnect the phone in File Transfer mode with USB Debugging enabled to force the ADB interface to enumerate.
Device Manager shows multiple LG entries, some with warnings: LG phones expose multiple USB interfaces (modem, network adapter, storage, ADB) as a composite device. Not all interfaces have drivers, and the ones without drivers show warnings. The only one that matters for ADB is the Android Device or ADB Interface entry. Warnings on other LG sub-interfaces are cosmetic for ADB purposes.
LG Bridge installer fails on Windows 11 with compatibility error: LG Bridge was developed before Windows 11 existed. Run the installer in Windows 10 compatibility mode: right-click the installer EXE, choose Properties > Compatibility, check "Run this program in compatibility mode for" and select Windows 10. Apply and run. The USB driver portion typically installs correctly even if LG Bridge's application UI has display issues on Windows 11.
adb devices shows "unauthorized" in a loop: The authorization key may not be persisting to the phone's storage. This can happen if the phone's internal storage is nearly full (less than 10 MB free). Free up space, revoke ADB authorizations in Developer Options, and re-authorize.