Гугл драйвер для андроид

Гугл драйвер для андроид

Platform-tools: r31.0.3
ADB: 1.0.41 (31.0.3-7562133)
Fastboot: 31.0.3-7562133
Make_f2fs: 1.14.0 (2020-08-24)
Mke2fs: 1.46.2 (28-Feb-2021)
Последнее обновление утилит в шапке: 01.08.2021

ADB (Android Debug Bridge — Отладочный мост Android) — инструмент, который устанавливается вместе с Android-SDK и позволяет управлять устройством на базе ОС Android.
Работает на всех Android-устройствах, где данный функционал не был намеренно заблокирован производителем.
Здесь и далее: PC — ПК, компьютер к которому подключено устройство.
ADB — консольное приложение для PC, с помощью которого производится отладка Android устройств, в том числе и эмуляторов.
Работает по принципу клиент-сервер. При первом запуске ADB с любой командой создается сервер в виде системной службы (демона), которая будет прослушивать все команды, посылаемые на порт 5037.
Официальная страница
ADB позволяет:

  • Посмотреть какие устройства подключены и могут работать с ADB.
  • Просматривать логи.
  • Копировать файлы с/на аппарат.
  • Устанавливать/Удалять приложения.
  • Удалять (очищать) раздел data.
  • Прошивать (перезаписывать) раздел data.
  • Осуществлять различные скрипты управления.
  • Управлять некоторыми сетевыми параметрами.

Поставляется ADB в составе инструментария разработчика Андроид (Android SDK), который, в свою очередь входит в состав Android Studio.

Если что-то неправильно, то в списке подключенных устройств (List of devices attached) будет пусто.

Скрытые команды ADB
adb -d Команда посылается только на устройство подключенное через USB.
Внимание: Выдаст ошибку, если подключено больше одного устройства.

adb -e Команда посылается на устройство в эмуляторе.
Внимание: Выдаст ошибку, если подключено больше одного эмулятора.

adb -s Команда посылается на устройство с указанным серийным номером:

adb -p Команда посылается на устройство с указанным именем:
Если ключ -p не указан, используется значение переменной ANDROID_PRODUCT_OUT.

adb devices Список всех подсоединенных устройств.

adb connect [: ] Подсоединиться к андроид хосту по протококу TCP/IP через порт 5555 (по умолчанию, если не задан).

adb disconnect [ [: ]] Отсоединиться от андроид подключенного через TCP/IP порт 5555 (по умолчанию, если не задан).
Если не задан ни один параметр, отключиться от всех активных соединений.

adb push Копировать файл/папку PC->девайс.

adb pull [ ] Копировать файл/папку девайс->PC.

adb sync [ ] Копировать PC->девайс только новые файлы.
Ключи:
-l Не копировать, только создать список.

adb shell Запуск упрощенного unix shell.
Примеры использования

adb emu Послать команду в консоль эмулятора

adb install [-l] [-r] [-s] Послать приложение на устройство и установить его.
Пример: adb install c:/adb/app/autostarts.apk Установить файл autostarts.apk лежащий в папке /adb/app/ на диске с:
Ключи:
-l Блокировка приложения
-r Переустановить приложение, с сохранением данных
-s Установить приложение на карту памяти
Установка split apk

adb uninstall [-k] Удаление приложения с устройства.
Ключи:
-k Не удалять сохраненные данные приложения и пользователя.

adb wait-for-device Ждать подключения устройства.

adb start-server Запустить службу/демон.

adb kill-server Остановить службу/демон.

adb get-state Получить статус:
offline Выключен.
bootloader В режиме начальной загрузки.
device В режиме работы.

adb get-serialno Получить серийный номер.

adb status-window Непрерывный опрос состояния.

adb remount Перемонтировать для записи. Требуется для работы скриптов, которые изменяют данные на.

adb reboot bootloader Перезагрузка в режим bootloader.

adb reboot recovery Перезагрузка в режим recovery.

adb root Перезапуск демона с правами root

adb usb Перезапуск демона, прослушивающего USB.

adb tcpip Перезапуск демона, прослушивающего порт TCP.

adb ppp [параметры] Запуск службы через USB.
Note: you should not automatically start a PPP connection. refers to the tty for PPP stream. Eg. dev:/dev/omap_csmi_tty1
Параметры:
defaultroute debug dump local notty usepeerdns

FastBoot — консольное приложение для PC. Используется для действий над разделами

fastboot devices Список присоединенных устройств в режиме fastboot.
fastboot flash Прошивает файл .img в раздел устройства.

fastboot erase Стереть раздел.
Разделы: boot, recovery, system, userdata, radio
Пример: fastboot erase userdata Стирание пользовательских данных.

fastboot update Прошивка из файла имя_файла.zip

fastboot flashall Прошивка boot + recovery + system.

fastboot getvar Показать переменные bootloader.
Пример: fastboot getvar version-bootloader Получить версию bootloader.

fastboot boot [ ] Скачать и загрузить kernel.

fastboot flash:raw boot [ ] Создать bootimage и прошить его.

fastboot devices Показать список подключенных устройств.

fastboot continue Продолжить с автозагрузкой.

fastboot reboot Перезагрузить аппарат.

f astboot reboot-bootloader Перезагрузить девайсв режим bootloader.
Перед командами fastboot можно использовать ключи:
-w стереть данные пользователя и кэш
-s Указать серийный номер устройства.
-p

Указать название устройства.
-c Переопределить kernel commandline.
-i Указать вручную USB vendor id.
-b Указать в ручную базовый адрес kernel.
-n

Указать размер страниц nand. по умолчанию 2048.

Команду logcat можно использовать с машины разработки
$ adb logcat
или из удаленного shell
# logcat Каждое сообщение лога в Android имеет тэг и приоритет
Тэг – это строка указывающая компонент системы, от которого принято сообщение (например: View для системы view)
Приоритет – имеет одно из нижеследующих значений (в порядке от меньшего к большему):
V — Verbose (Низший приоритет).
D — Debug
I — Info
W — Warning
E — Error
F — Fatal
S — Silent (Наивысший приоритет, при котором ничего не выводится).

Получить список тэгов, используемых в системе, вместе с их приоритетами можно запустив logcat. В первых двух столбцах каждого из выведенных сообщений будут указаны / .
Пример выводимого logcat сообщения:
I/ActivityManager( 585): Starting activity: Intent

Для уменьшения вывода лога до приемлемого уровня нужно использовать выражения фильтра. Выражения фильтра позволяют указать системе нужные комбинации и , остальные сообщения система не выводит.
Выражения фильтра имеют следующий формат : . где указывает нужный тэг, указывает минимальный уровень приоритета для выбранного тэга. Сообщения с выбранным тэгом и приоритетом на уровне или выше указанного записываются в лог. Можно использовать любое количество пар : в одном выражении фильтра. Для разделения пар : используется пробел.

Читайте также:  Расширение оперативной памяти android

Пример ниже выводит в лог все сообщения с тэгом «ActivityManager» с приоритетом «Info» или выше, и сообщения с тэгом «MyApp» и приоритетом «Debug» или выше:
adb logcat ActivityManager:I MyApp:D *:S
Последний элемент в выражении фильтра *:S устанавливает приоритет «silent» для всех остальных тэгов, тем самым обеспечивая вывод сообщений только для «View» и «MyApp». Использование *:S – это отличный способ для вывода в лог только явно указанных фильтров (т.е. в выражении фильтра указывается «белый список» сообщений, а *:S отправляет все остальное в «черный список»).

При помощи следующего выражения фильтра отображаются все сообщения с приоритетом «warning» или выше для всех тэгов:
adb logcat *:W

Если logcat запускается на машине разработчика (не через удаленный adb shell), можно также установить значение выражения фильтра по умолчанию задав переменную окружения ANDROID_LOG_TAGS:
export ANDROID_LOG_TAGS=»ActivityManager:I MyApp:D *:S»

Следует обратить внимание что задав переменную окружения ANDROID_LOG_TAGS она не будет работать в эмуляторе/устройстве, если вы будете использовать logcat в удаленном shell или используя adb shell logcat.
Вышеописанная команда export работает в ОС *nix и не работает в Windows.

Контроль формата вывода лога

Сообщения лога в дополнение к тэгу и приоритету содержат несколько полей метаданных. Можно изменять формат вывода сообщений показывая только конкретные поля метаданных. Для этого используется параметр -v и указывается один из ниже перечисленных форматов вывода.

brief Показывать приоритет/тэг и PID процесса (формат по умолчанию).
process Показывать только PID.
tag Показывать только приоритет/тэг.
thread Показывать только процесс:поток и приоритет/тэг.
raw Показать необработанное сообщение, без полей метаданных.
time Показывать дату, время вызова, приоритет/тэг и PID процесса.
long Показывать все поля метаданных и отдельно сообщения с пустыми строками.

При запуске logcat можно указать формат вывода используя параметр -v:
adb logcat [-v

Источник

Download Latest Google USB Drivers for Windows 10, 8, 7

Android USB Driver is most important to connect your device with the computer. If your smartphone doesn’t detect on your computer then read the article below to fix USB problems. Download Google USB Drivers to connect Pixel or Nexus Android device with a Windows PC. This Google USB driver package will help you to connect your Pixel or Nexus device which is on Android Debugging Mode. Here we share to download and install the latest version of Google USB Drivers on Windows 10, Windows 8 and Windows 7.

Google USB Drivers On Windows 10, 8, 7

Google USB Drivers For Windows:

If you are love to customize your Android device. If you have been with Android family since long then know that if you want to customize your device then need to install Custom Recovery like TWRP or need to Root your device. So before going all those steps, first need to unlock the bootloader of your Android device. Android smartphone needs to be connected to a computer to unlock the bootloader. The Android device’s connection to the computer needs to be correct so that the communication between the two devices is properly. To confirm whether this connection is correct or not need to install proper Android USB Drivers on Windows.

Android USB Drivers For Windows:

Here we provide the latest Google USB Drivers for Windows, also we guide you on how to install Google USB Driver on your computer so that Android device can connect with computer. This Google USB Driver ware released for Google Pixel or Google Nexus smartphones. Google USB Driver package mainly works with Google Pixel or Google Nexus Phones but it actually works smoothly with the most android device.

If you have ever installed the OEM android driver on your computer, you are not able to detect your device then you should follow this guide. Through this complete guide, we have solved your phone’s ADB and Fastboot problems for detecting with the computer.

Download Google USB Driver for Windows:

Install Google USB Driver on Windows 10:

  • First, connect your Android device with the computer via USB cable.
  • Right-tap the bottom-left corner, or press Windows+X >Computer Management.
  • After open Computer, Management click on Device Manager from the left panel.

  • In the Device Manager > locate and expand Portable Devices from the right panel.
  • In Portable Devices, right-click on the device name, and then select Update Driver Software.

  • A popup box will show now click on the “Browse my computer for driver software“.

  • Click on browse and then locate the Google USB Drivers folder that you download before.

  • Now Click Next to install the driver.

Install Google USB Driver on Windows 7/Windows 8:

  • First, connect your Android device with the computer via USB cable.
  • Right-tap the bottom-left corner, or press Windows+X >Computer Management.
  • After open Computer, Management click on Device Manager from the left panel.
  • In the Device Manager,> locate and expand “Other devices” from the right panel.
  • In Portable Devices, right-click on the device name, and then select Update Driver Software.
  • A popup box will show now click on the “Browse my computer for driver software“.
  • Click on browse and then locate the USB driver folder that you download before.
  • Now click Next to install the driver.

This was the entire guide to install Google USB Drivers. Hope these instructions assist you well. If you consider contributing anything to this page, please feel free to write in the comment section below.

Читайте также:  Realm android 12 список

Источник

Download Google USB Drivers for Windows 10/8.1/7 [Latest]

Google USB Drivers are required to connect Google Pixel or Nexus devices to Windows PC using a USB cable. You will need these drivers to transfer files or sync data on your Pixel/Nexus device, and especially when working with the Android ADB and Fastboot tools.

You can download the latest Google USB Drivers from here and follow the instructions on how to manually install them on your Windows PC. Furthermore, we have also provided instructions on how to modify the ‘android_winusb.inf‘ file included in the drivers to support other Android devices.

Normally, the said USB drivers come bundled with SDK Manager in the Android Studio IDE, which IS constantly updated with the latest available drivers. But if you’re an average Android user, chances are that you might not have the IDE set up on your PC. That’s because it is used mostly by experienced developers and enthusiasts. In that case, you can use the standalone USB drivers, which as provided directly by Google for users who might face issues of Windows not recognizing their phone over a USB connection.

Google USB drivers also act as ‘Android ADB and Fastboot Drivers‘. So you can install them on your PC to use ADB (Android Debug Bridge) for debugging apps and ROMs, or use Fastboot to unlock the bootloader or flash factory images on your Pixel/Nexus device.

To sum up, the drivers are useful in various situations. With that in mind, go ahead to download the latest version of the USB Drivers from below and follow the instructions on how to install them on your Windows PC.

Download Google USB Drivers

Now, there are two different ways/methods to download the USB driver on Windows. You can either download the Google USB Driver ZIP file manually. Or, you can use the SDK Manager in the Android Studio to download it.

The latter gives an added benefit, that is the SDK Manager will automatically notify you when a newer version is available. The former method, on the contrary, will require you to manually check if a newer driver version is available and download it again.

In our personal experience, downloading the ZIP package directly is easier than using the Android Studio. But the choice is solely up to you. We have covered both the methods below.

Note: If you’re using macOS or Linux, you would not need these drivers.

Direct Download

Just click on the link below to download the Google USB Driver ZIP file to your PC.

Once downloaded, extract the ZIP file to a suitable location on your computer. The extracted ‘usb_drivers’ folder should contain the required ‘android_winusb.inf’ driver file.

Download via Android Studio

First of all, make sure that you have downloaded and installed the latest version of Android Studio on your Windows PC. Once you have it installed, follow the instructions below:

  • Launch ‘Android Studio’ on your PC.
  • Click on ‘Tools’ and select ‘SDK Manager’.
  • Go to the ‘SDK Tools’ tab.
  • Select ‘Google USB Driver’ and click on ‘Ok’.
  • Finally, click on ‘Ok’ when prompted with the ‘Confirm change’ message.
  • You should see a ‘License Agreement’ message on the screen. Simply select ‘Accept’ and click on ‘Next’.

Android Studio will now download the Google USB drivers to ‘android_sdk\extras\google\usb_driver\‘ on your PC. Here ‘android_sdk’ is the folder where the Android SDK is installed on your PC.

How to Install Google USB Drivers

The Google USB Drivers come in the form of an ‘android_winusb.inf’ setup information file, rather than a Windows executable. So, you will need to manually install it on your Windows PC. The same steps can also be used to upgrade the existing drivers installed on your PC to the latest version available.

Now follow the installation guide below according to the Windows OS version you’re using. It’s quite easy and wouldn’t take more than a minute to install them.

On Windows 10

To install Google Android USB Drivers on Windows 10, follow the instructions below.

  1. First, connect your Android device to the PC’s USB port.
  2. Go to the ‘Control Panel‘ and click on ‘Device Manager‘.
    ‘Device Manager’ on your Windows 10 PC» width=»768″ height=»588″ srcset=»https://www.thecustomdroid.com/wp-content/uploads/2020/02/Install-Google-USB-Drivers-on-Windows-10-01.jpg 768w, https://www.thecustomdroid.com/wp-content/uploads/2020/02/Install-Google-USB-Drivers-on-Windows-10-01-300×230.jpg 300w» sizes=»(max-width: 768px) 100vw, 768px»/>
  3. Double-click on your device category to expand the list of connected devices.
  4. Right-click on your Android device’s name and click on ‘Update driver‘.
  5. Click on ‘Browse my computer for driver software‘ in the Hardware Update wizard.
  6. Click ‘Browse‘ and select the ‘usb_driver‘ folder.
    • For example: If you downloaded the drivers using Android Studio, the folder should be located in ‘android_sdk\extras\google\’ on the PC. Or, if you downloaded the ZIP file, then just locate the extracted ‘usb_driver’ folder.
  7. Finally, click ‘Next‘ to install the drivers.

On Windows 7 and Windows 8/8.1

To install Google Android USB drivers on Windows 7, Windows 8, and Windows 8.1 PC, follow the instructions below.

  1. First, connect your Android device to the Windows PC’s USB port.
  2. Then right-click on ‘Computer‘ and select ‘Manage‘.
  3. Select Devices in the left pane.
  4. Double-click on ‘Other device‘ in the right pane to expand it.
  5. Right-click on the device name (e.g. Google Pixel) and select the ‘Update Driver‘ option.
  6. Click on ‘Browse my computer for driver software‘ in the Hardware Update wizard.
  7. Click ‘Browse‘ and locate the ‘usb_driver’ folder.
  8. Finally, click on ‘Next‘ to install the USB drivers.
Читайте также:  How to install android drivers

You should now have the Google USB Drivers installed. Your Windows PC should now detect and recognize your Android device over the USB connection.

Important Note

If the drivers fail to install even after following the steps, OR the ADB/Fastboot commands do no work even if the drivers are installed, then it could be because you’re using a USB 3.0/3.1/3.2 port or an AMD based PC. This is an issue faced by a lot of users recently.

To fix it, simply try using a USB 2.0 port (If it’s not available, you can also use a USB 2.0 hub) on your PC. Also, try using an Intel-based PC for especially when using ADB/Fastboot tools.

How to Modify Google USB Drivers to Support Other Android Devices

Like we mentioned above, Google USB Drivers also work as ‘ADB Drivers’. But by default, they only support the Google Pixel and Nexus devices.

While Android OEMs do provide their own drivers, but it’s more often than they miss to include the required ADB USB drivers in them. In such cases, you can easily modify the ‘android_winusb.inf’ file in Google USB Drivers to support any other Android device to use the ADB and Fastboot tools.

In order for the drivers to support your non-Pixel/Nexus device, you will first need to acquire the Vendor ID (VID) and Product ID (PID) of your device. Once you have them, the second step is to edit the ‘android_winusb.inf’ file and add a new device section with the VID and PID of your own device. And finally, the third and last step is to install the modified drivers.

Sounds confusing? It’s quite simple actually. Just follow the step-by-step instructions below.

Step 1: Get the VID and PID of your Android Device

  1. First, connect your Android device to the PC using the USB cable.
  2. Go to ‘Control Panel‘ > ‘Device Manager‘ on the PC.
  3. Locate your unrecognized Android device. An unrecognized device can normally be located under the ‘Universal Serial Bus controllers‘ OR ‘Other devices‘ sections in Device Manager. You would see a yellow-colored triangle warning icon beside the connected device.
  4. Right-click on the device name and click on ‘Properties‘.
  5. Go to the ‘Details‘ tab and select ‘Hardware Ids‘ from the dropdown menu.
  6. You should now see the Vendor and Product IDs of your Android device.

Step 2: Modify ‘android_winusb.inf’ file

Now that you have the required IDs, you can modify/edit the ‘android_winusb.inf’ file to add your device to the supported list.

  1. First, locate the ‘usb_driver‘ folder on your PC. Inside the folder, you should have the ‘android_winusb.inf‘ file.
  2. Open the file using a text editor and locate the ‘[Google.NTx86]‘ section if your Windows PC is 32-bit (x86) or the ‘[Google.NTamd64]‘ section if your Windows PC is 64-bit (x64).
  3. In the said section, you will see a number of items with the following format:
  4. You can copy the above lines into the respective section and edit it accordingly.
  5. The first thing to do is to replace the ‘[device name]‘ item with your actual device name (Nothing specific, it could be anything).
  6. Next, you have to add your device’s VID and PID values to the %SingleAdbInterface% and %CompositeAdbInterface% items.
    1. In case your device also has a REV_xxxx ID, you will need to add two lines for the %SingleAdbInterface% item. One without and another with the REV ID. The line with the REV ID should look like:
    2. For the %CompositeAdbInterface% item, you will further need to add ‘MI_01‘ ID towards the end. With the MI_01 ID, the line should look like:
  7. For example, my Xiaomi Mi A3 has a VID and PID as ‘USB\VID_18D1&PID_D00D’ & ‘USB\VID_18D1&PID_D00D&REV_0100’. In that case, the lines should look like the following:

    Once you have added the lines under the proper section (depending on your PC’s architecture), save the file and exit.

    Step 3: Install the Modified USB Drivers

    You have now successfully modified the Google USB Drivers to support your Android device. The last step is to install these modified drivers for your device.

    To do so, go to ‘Control Panel’ > ‘Device Manager’ and right-click on your device’s name. Then select ‘Update drivers’ to launch the Hardware Update wizard. Simply click on ‘Browse my computer for driver software’ and select ‘Browse’. Now locate the ‘usb_driver’ folder that contains the modified android_winusb.inf file and select it.

    Finally, click on ‘Next’ to install the modified drivers for your device. That’s it! Your Windows PC should now recognize your Android device over ADB or Fastboot.

    Installing the Google USB Drivers is the easiest solution to make your Windows PC successfully recognize your Android device. And while it should work for most other Android devices too, it’s not a hundred percent guaranteed. And if this happens, you may want to install your device’s OEM specific drivers from this page or by clicking your device manufacturer link below.

    For low-level firmware flashing, you could also use MediaTek or Qualcomm USB drivers.

    If you face any issues installing the drivers on your PC, feel free to ask us through the comments.

    Источник

Оцените статью