------------------------------------------------------------------------------------------------------------
Step 1: Installing The Necessary Desktop Tools
ADB and Fastboot Installation
- Download the full Android SDK from here (scroll to the bottom of the page>DOWNLOAD FOR OTHER PLATFORMS>SDK Tools Only).
- Extract the zip and place the android-sdk-windows folder on your desktop.
- **If you chose to download the slimmed sdk skip to step 5**
- Only if you downloaded the full sdk: Go into the android-sdk-windows folder and run SDK Manager.exe. Install the following packages (there are a total of 4 packages):
- - Tools > Android SDK Tools, Android SDK Platform-tools
- - Extras > Android Support Library, Google USB Driver
- Only if you downloaded the full sdk: Go back into the android-sdk-windows directory, and you should see a new folder named platform-tools. If you don't see this new folder, repeat the step above.
- To confirm that it is indeed working, open a command prompt window and enter the following commands:
command line:
cd Desktop/android-sdk-windows/platform-tools
adb version
------------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------------
Step2: Unlock, Root & Custom Recovery
>>>>>>Before you begin, make sure your N6 has USB Debugging Mode switched on<<<<<<
Before continuing, users must enable Developer Options in the devices settings and select the OEM Unlock option. To do so:
Before continuing, users must enable Developer Options in the devices settings and select the OEM Unlock option. To do so:
- Go into Settings
- Under About Phone, you'll be able to locate your Build Number
- Tap Build Number until you are notified that you have activated Developer options
- Go into Developer Options, ensure it is enabled and check the Enable OEM Unlock box
- While in Developer Options, ensure the USB Debugging box is checked
------------------------------------------------------------------------------------------------------------
Unlock The Bootloader:
- Turn the phone off. Then boot it into the bootloader/fastboot mode by holding volume down + power.
- Plug the phone into your PC, then open a command prompt window and type:command line:
cd Desktop/android-sdk-windows/platform-tools
command line:fastboot devices
- If the phone has been recognized by the command above, proceed to unlocking the bootloaderwith the following command:
Remember that this step will wipe EVERYTHING off the phonecommand line:fastboot oem unlock
- After the above command has finished executing, run the following (DO NOT skip this step, it is more important than you think):command line:
fastboot reboot
- Close the command prompt window.
------------------------------------------------------------------------------------------------------------
Obtain Root:
- Extract the ZIP file
- Boot your device in bootloader/fastboot mode. Usually this can be done by turning your device off, then holding VolUp+VolDown+Power to turn it on.
- Connect your device to your computer using USB
- Windows:
--- Run root-windows.bat
- Linux
--- chmod +x root-linux.sh
--- Run root-linux.sh
- Mac OS X
--- chmod +x root-mac.sh
--- Run root-mac.sh
--- Run root-windows.bat
- Linux
--- chmod +x root-linux.sh
--- Run root-linux.sh
- Mac OS X
--- chmod +x root-mac.sh
--- Run root-mac.sh
Follow the on-screen instructions - watch both the computer and the device!
------------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------------
Installing A Custom Recovery:
- Turn the phone off. Then boot it into the bootloader/fastboot mode by holding volume down + power.
- Rename the recovery file that you downloaded above to recovery.img. Remember that you should place the file in the platform-tools folder inside of the android-sdk-windows folder on your desktop.
- Open command prompt and run the following commands:command line:
cd Desktop/android-sdk-windows/platform-tools
command line:fastboot flash recovery recovery.img
- On the phone, use the volume buttons to scroll onto "Restart Bootloader" and hit powerto select it. After the bootloader reloads, use the volume buttons to scroll onto "Recovery Mode" and power to select it. You should then be greeted with your newly installed custom recovery.
- Close the command prompt window.
------------------------------------------------------------------------------------------------------------
0 comments:
Post a Comment