Flashing windows on android

Flashing windows on android

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 (Наивысший приоритет, при котором ничего не выводится).

Читайте также:  Android для skoda karoq

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

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

Пример ниже выводит в лог все сообщения с тэгом «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

Источник

How to Flash Android Phone using PC Software

home_icon Created with Sketch.

Home > Android Tips > How to Flash Android Phone using PC Software

August 1, 2019 (Updated: September 9, 2021)

One beauty of Android is that it allows endless possibilities in terms of customization. This is what makes it so popular; you could have two Android phones from the same company that both look the same from the outside but are opposite in terms of how the UI (User Interface) looks.

One way of changing how your phone feels is by flashing the device. It may sound technical and a daunting task however, in reality, it is quite simple to flash your device. What exactly does it mean to «flash» your device? Put simply, you will install a custom ROM on your device. Essentially, you will be changing your current version of Android to a modified version; this could be from your device’s manufacturer (Samsung, Google, LG, etc) or one made by the android community.

Part 1. Reasons & Risks of Flashing Android Phone

Before you jump straight into flashing your device, you should be aware of the reasons as to why someone would like to flash their device but also the risks that come with flashing your phone.

  • Bloatware: One main reason to flash your device is to remove any bloatware that comes with the device. As you are installing a custom ROM, you will be able to remove the bloatware.
  • Customization: A new ROM may allow you to customize your device to the most precise detail you want. It will also give your phone a different feel.
  • Performance: Normally, you would not be able to change how your CPU and GPU behave. However, a custom ROM may allow you to overclock your CPU and GPU to optimize the performance of these components for activities such as gaming. Battery life can also be increased as background activity can be reduced when the device is not being used.
  • Updates: Most Android devices will stop receiving updates after a few years of release but if you install a community made custom ROM, you will be receiving updates more often and for longer.
Читайте также:  Связь с виндовс андроид хонор

All of this does come with some risks that you should carefully consider before flashing your device.

  • Malfunctions: Some device features, such as some preinstalled applications may not be compatible with the custom ROM so they will not be able to function.
  • Warranty: Flashing your phone will almost always void your warranty. The manufacturer will not repair an issue with the device even if it is not related to the installation of a custom ROM.
  • Compatibility: Especially for less popular devices, not all custom ROMs may be compatible with your device.

Note: You WILL lose all data on your device when flashing the device. Make sure you create a backup of all the data on your device separately.

If you want to know how to flash the android phone with a computer, this article will show you how to flash your android device using iMyFone Fixppo, SP Flash Tool, and Odin. The Fixppo software is the easiest and fastest method for any user to repair a dead device and flashing firmware onto it. It automatically downloads the firmware, which means you are not at risk of downloading malicious software. It also completes the difficult steps required when using software such as Odin (see further below) so that you can repair your device as soon as possible.

Part 2. Preparation Before Flashing Android Phone using PC Software

Check the requirements below before you start to flash your phone.

  • The device you want to flash
  • PC
  • USB Cable for your device
  • Unlocked Bootloader
  • Flashing software
  • Android USB Drivers
  • Custom ROM downloaded

If you use iMyFone Fixppo for Android, then no need to install Android USB drivers and download ROM.

Before following any of these methods, make sure your bootloader is unlocked and you have Android USB drivers installed for your device. Make sure that your device’s battery is above 50% before doing this.

Prerequisite 1: Installing USB Drivers

Samsung devices:

  • Download the Samsung USB drivers from the Samsung developer’s website.
  • Extract the zip file by right-clicking it (on windows), choosing «extract all» and then clicking extract.
  • Open the extracted folder and run the «.exe» file.
  • Click next, choose your language and click install. Wait for the installation to complete and click finish.

В MTK Devices:

  • Download the Android CDC driver file from online and extract it (right-click, choose to extract all and extract).
  • Opendevice manager by searching for it in Windows or by searching for «device manager» in Control Panel.
  • In the device manager, click on your Computer’s name, click on the action button and «Add legacy hardware».
  • Click on the «Next» button, choose the «Install the hardware that I manually select from a list (Advanced)» and click next.
  • Choose the «have disk» option, click on «browse», locate the extracted driver folder and click on the «Android Gadget CDC Driver» file.
  • Click on «OK«, «next«, wait for the driver to install and click «finish«.

If you get a Windows security box, click on «Install this driver software anyway».

Prerequisite 2: Unlocking the Bootloader

Samsung devices come with an unlocked bootloader, so you do not need to follow these steps. Here is a general guide.

  • Download and install Android SDK tools.
  • Download the drivers for your device (these can be found from your manufacturer’s website).
  • Enable developer’s options and then enable USB Debugging in the developer’s options menu on your device.
  • Get the unlock key for your device from your manufacturer’s website.
  • Use command prompt to unlock the bootloader via fastboot commands.

Searching Google for your device’s bootloader unlocking method will give you a more in-depth method that you can follow.

Part 3. How to Flash Android Phone using PC Software

We will introduce 3 PC software here. A complete guide will be offered for each method. You can check the chart below to know the differences between them and choose a method you like.

Method 1: Flashing via iMyFone Fixppo (Easiest + Fastest)

This is the easiest and fastest method for flashing Android firmware onto your device. iMyFone Fixppo for Android will work with android phones that are completely dead and requires no expert knowledge in Android. It is an Android system repair tool, but also an android flash tool.

  • Download Fixppo for Android on your Windows PC.
  • Launch Fixppo and click start on the software to continue.
  • Fill in the details regarding your Android device on the software and click «Download Firmware». This will download and extract the firmware for your phone automatically without you having to do anything else.
  • Confirm the information once the firmware has been downloaded and press start.
  • Put your device is in Download mode (follow on-screen instructions).
  • Connect your device to your PC to begin the flashing process.
  • The process will start. The Fixppo software will automatically flash your phone and complete the whole process. Leave your phone until it reboots, as this happens when problems have been repaired on your device.
  • Disconnect your device from the PC and use it as normal.
Читайте также:  Аналог галереи для андроид

That is all you need to do using Fixppo. This is the easiest and best method for repairing your android device (phone or tablet) and to repair it so that you can continue to use it as previously.

Besides, iMyFone Fixppo for Android has been trusted by many individuals and websites. Thousands of people have already tried Fixppo for Android and can solve various complex Android system issues.

Method 2: Flashing via SP Flash Tool (MediaTek Devices) (Difficult)

  • Power off your android device completely and remove the battery if it is removable.
  • Download the ROM you want to flash your phone with (make sure the ROM is compatible) and extract the files.

ROM files from websites such as XDA developers are usually reliable.

  • Download the SmartPhone(SP) Flash Tool on your computer.
  • Extract the zip file by right-clicking on the .zip file and choose «extract all».
  • Open the folder that has been extracted, find «flash_tool.exe» in the folder and run the file.
  • When the tool has been executed, click on the «Download» tab if it hasn’t already been selected.
  • When you are in the download tab, click on the «Choose» button on the line which says «Scatter-loading File».
  • Locate your extracted ROM, go into the «Firmware» folder and select the «.txt» file that contains the word «Scatter».
  • Once the file has been processed, click on the «Download» button.
  • Connect your phone (make sure the power is turned off and the battery is removed if possible) and a volume key to make sure your phone has been recognized by the PC.
  • Once completed, exit the SP flash tool and disconnect your phone.

Your phone has now been flashed to your desired ROM. Reboot your phone and you can now use your device normally.

Method 3: Flashing via Odin (Samsung Devices) (Difficult)

  • Download the ROM you would like to install and extract it on your PC.

You can download the ROM from a range of websites, such as Sammobile. Make sure the ROM is compatible with your device.

Note: Do not downgrade your version of Android. Always upgrade the version as it will cause issues with your device.

  • Download, extract and install Samsung USB Drivers on your PC.
  • Download and extract the latest version of Odin on your PC.
  • Put your phone in Download mode
    • For devices with a physical home button: Power off your device. Hold down the volume down and home button keys simultaneously. When you get a screen with a warning, press the volume up key to put your device in download mode.
    • If your device does not have a physical home button: Power off your device. I will be using the S8 as an example. Press and hold the Bixby and volume up buttons. Then press the power button until the power turns off. Release the buttons once a blue screen appears. Press the volume up key to boot into download mode.
    • If these methods do not work on your device, a quick search online will confirm how to boot into download mode.

Search: Phone model + download mode

  • Connect your phone to the PC via a USB cable.
  • Launch the Odin software (it will be in the folder that you have extracted). You will see your device under the «ID: COM» label if connected.
  • Once Odin is launched, click on the «AP» button. Browse into your extracted ROM folder through the Odin popup browser and click on the file located inside the ROM folder.
  • Wait for the file to be added to Odin.
  • Click on the Start button at the bottom of Odin and wait for the ROM to be flashed.
  • Your phone will reboot and finalize the installation of the software.
  • When your phone has completed the installation, disconnect your phone.

In short, using the Fixppo software is the quickest and easiest way for you to flash firmware onto your device. The other methods require you to download the firmware in advance and require more skill when flashing. This can lead to more errors and you potentially risk bricking your device.

Источник

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