Skip to content

K3V1991/How-to-unlock-Android-Bootloader

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 

Repository files navigation

How to unlock Bootloader using Fastboot on Android




Requirements:

  • Windows OS
  • ADB & Fastboot++ - GitHub
  • USB Driver for your Device or Universal ADB Driver

Enable Developer Options & USB Debugging:

  1. Install the USB Driver for your Phone or Universal Adb Driver
  2. On your Phone, go to Settings > About Phone. Find the Build Number and tap on it 7 times to enable Developer Options
  3. Now enter System > Developer Options and find USB debugging and enable it
  4. Plug your Phone or Tablet into the Computer and change it from Charge only to File Transfer Mode
  5. On your Computer, browse to the Directory where you extracted/installed ADB & Fastboot++
  6. Launch a Command Prompt with Open CMD.bat or ADB & Fastboot++ Shortcut
  7. Once you’re in the Command Prompt, enter the following Command:
adb devices

and hit Enter

  1. System is starting the ADB Daemon (If this is your first Time running ADB, you will see a Prompt on your Phone asking you to authorize a Connection with the Computer. Click OK.).
  2. Succesful enabled USB Debugging.

Rebooting to Bootlaoder:

  1. Enter the following Command and hit Enter:
adb reboot bootloader

The Device reboots

Unlocking the Bootloader:

Note: That this will wipe all Data on your Device

  1. Type the following Command, then hit Enter:
fastboot devices

Returns a Series of Letters and Numbers followed by the Word "fastboot" then your Device is connected properly

  1. If your Device shipped with Lollipop or lower pre-installed, enter the following Command:
fastboot oem unlock
  1. If your Device shipped with Marshmallow or higher, type the following Command, then hit enter:
fastboot flashing unlock

You'll see a Message on your Android Device asking if you're sure. Make sure the "Yes" Option is highlighted, press the Power Button, then your Bootloader will unlock and your Phone reboots back into Fastboot Mode

  1. Reboot the Device to System:
fastboot reboot

During reboot, your Device will go through a Factory Reset and then finally boot into System. Your Android Device's Bootloader is now unlocked