How to unisntall Huawei bloatware

February 1, 2014 Josef Kubat Android 0 minutes, 58 seconds

How to unisntall Huawei bloatware

Download and install Android Studio:

https://developer.android.com/studio

  1. In Android Studio, click Tools > SDK Manager > check Google USB Driver, Apply.
  2. Locate ADB tool. FE: c:\Android\platform-tools\adb.exe
  3. Enable USB Debugging on your Huawei/Honor. Go to Settings > About Phone > tap Build Number 7 times to activate Developer Mode. Go to Settings > Developer Options > enable USB Debugging.
  4. Connect your Huawei/Honor to your PC via USB, and launch an ADB terminal (hold shift + right click and choose "Open a Command Window Here" from inside your main ADB folder).
  5. In the ADB terminal, type: adb devices
  6. You may need to accept an ADB pairing dialogue on your Huawei.
  7. When your device is successfully recognized by ADB, type the following commands in order:
Adb shell
pm uninstall -k --user 0 com.huawei.search

c:\Android\platform-tools>adb devices
List of devices attached
XTX1234567890123        unauthorized
(Authorize device in your mobile phone)

c:\Android\platform-tools>adb devices
List of devices attached
XTX1234567890123        device
(authorized!)

c:\Android\platform-tools>adb shell
HWCOR:/ $ pm uninstall -k --user 0 com.huawei.search
Success
  • List all installed packages:
    
    pm list packages -f
    pm list packages -f' | sed -e 's/.*=//' | sort
apk=com.huawei.helath
apk=com.huawei.appgallery
apk=com.huawei.appmarket
apk=com.huawei.hicare
apk=com.huawei.hitouch
apk=com.huawei.userguide???

https://www.svetandroida.cz/jak-odstranit-bloatware-emui-honor-huawei/