super simple. I'll assume you use windows
should be noted that unlocking it wipes the phone.
standard you do at your own risk warning applies
update your adb and fastboot I just toss these 4 highlighted files into the windows folder, but you may have a different set up(I put them in the windows folder so I don't have to add them to PATH.
you may also need the usb drivers
- run through the initial setup(don't bother logging into your google account).
- enable dev options(settings>about phone>build number>tap it 7 times)
- go into settings>system>advanced>dev options>oem unlocking, click the toggle
- while still in dev options scroll down a little and enable usb debugging
- plug your phone into your pc
- open up command prompt(powershell works to but i always use command prompt) type into the command prompt
the phone will reboot into fastboot mode.
- now type into the cmd window
and see if it lists a device, if not you need to install the drivers i linked to
- if you had to install the drivers try the fastboot devices command again after installing them, it should list the device now.
- now type in
you will then have to use the phone to select yes to the unlock. you use the volume keys to select and the power button to confirm
- now you can flash the boot.img I provided that matches your build number using
Code:
fastboot flash boot "whatever the boot.img is named"
if the cmd window location does not match the location of the boot.img you will have to enter that too examples
Code:
fastboot flash boot C:\Users\pbanj\Desktop\boot.img
or you can do
Code:
cd C:\Users\pbanj\Desktop
and then just do the normal fastboot flash boot whatever the boot.img is named.
- after that finishes flashing you can reboot the phone by typing in
- now go through the setup and actually set your device up.
- after it is set up open up the magisk manager and it will tell you it needs to install the real manager, select ok
- now open the real magisk manager and it will prompt that it needs to install so extra stuff, select ok, and then reboot when it asks you to.
- you're now rooted, add what you want to magisk hide, and install the magisk mods you want, although i wouldn't go too crazy until we have twrp. if pay doesn't work follow the steps i gave in the main post.
- to update magisk just select the direct install method.
-
follow this to do an ota update
also a shameless plug. if you want to make opening command prompt or powershell in your current folder a bit easier you can use
My tools menu but iirc it only works on English windows 10.