If you don't want to update the Huawei phone to Harmony, but can't stand being harassed by forced pushes every day, you can completely disable this function from the program's bottom layer. The operation requires some computer knowledge, let's get started.
- You need to use a computer, download an ADB tool on the computer, at adbshell.com/downloads, the downloaded compressed package is 1364 KB in size, unzip it like this
ADB tool, computer enters Android phone
- Open "Developer Options" on the phone
Go to settings, click on "About Phone" at the bottom, find the version number and tap it 7 times, to enable developer mode
- Enable USB debugging permission (two items)
There will be a popup warning when opened, click OK
After enabling USB debugging, connecting the data cable will prompt you to allow debugging on xx computer, click OK
- Connect the computer to the phone's background via ADB
First connect the phone to the computer via a data cable, then open cmd (shortcut win+r, enter cmd and press enter)
The command to get the device code with ADB tool is C:\Users\Downloads\adb.exe devices
Where adb.exe devices is the command executed by adb.exe, the former is the file address of adb.exe, change it to your own download directory, pay attention to adb.exe space devices, do not connect them.
If attached with a certain number appears, it means the connection between adb and the phone is successful
- Disable system update function
The main command is shell pm disable-user com.huawei.android.hwouc
Actually, this is a built-in command of Huawei, which ordinary users cannot access, so it needs to be executed through adb.exe
Complete input command xxx~adb.exe shell pm disable-user com.huawei.android.hwouc
If disabled, it means it was successful
- Return to normal mode
Reverse the steps in step 3, disable USB debugging, then disable developer mode at the beginning.
Then you will find that the system update is either completely gone or cannot be clicked. Congratulations!!!
If you want to restore the update, change the above command to shell pm enable-user com.huawei.android.hwouc.