DEV Community

Cover image for Debloating MIUI / HyperOS Without Root: A Practical ADB Guide.
Aribu js
Aribu js

Posted on • Originally published at shcho-i-yak.pp.ua

Debloating MIUI / HyperOS Without Root: A Practical ADB Guide.

Remove Xiaomi ads, telemetry, and bloatware via ADB - no root, no bootloader unlock, SafetyNet stays intact.

Every Xiaomi, Redmi, or POCO owner knows the deal: aggressive in-app ads inside system apps, background analytics daemons you never asked for, and gigabytes of pre-installed bloatware that quietly consume RAM. On devices with 4-6 GB of RAM, this background orchestra causes constant micro-stutters, UI lag, and noticeably shorter battery life.

The usual solution pitched on forums involves unlocking the bootloader, flashing custom recovery, and installing a clean ROM like Pixel Experience or LineageOS. That path is risky and slow - Xiaomi now enforces a mandatory 168-hour (7-day) timer before granting bootloader unlock approval. One wrong step during flashing can brick your device.

There's a safer, faster alternative: use the official Android Debug Bridge (ADB) to surgically freeze and uninstall bloatware directly from the stock OS - no bootloader unlock required.

TL;DR

  • Freeze ads, telemetry, and heavy background services via ADB without root.
  • Works on any Xiaomi / Redmi / POCO running MIUI or HyperOS.
  • SafetyNet / Play Integrity stays intact. Banking apps keep working. OTA updates keep coming.
  • Worst case: factory reset restores everything to factory state.

Section 1. The "magic tool" myth - why XiaoMiTool and similar utilities don't bypass the timer

You'll find tools like XiaoMiTool V2 advertised as able to magically bypass Xiaomi's bootloader unlock queue. From an engineering perspective: this is false. No third-party utility can bypass Xiaomi's server-side check that validates your Mi Account status during the unlock request.

As long as the bootloader is locked, custom OS images can't be flashed - low-level digital signature verification blocks it. But we don't need that. Using ADB (Android Debug Bridge), we get direct access to the package manager over USB and can disable or uninstall any system package from a PC terminal.


Section 2. Setting Up the ADB Environment

Option A: Linux (Recommended)

As a developer running Fedora daily, this is my go-to environment. ADB works at the kernel level with zero driver headaches:

# Fedora / RHEL-based
sudo dnf install android-tools

# Ubuntu / Debian-based
sudo apt install adb

# Arch
sudo pacman -S android-tools
Enter fullscreen mode Exit fullscreen mode

Verify the installation:

adb version
# Android Debug Bridge version 1.0.41
Enter fullscreen mode Exit fullscreen mode

Option B: Windows

  1. Download the official SDK Platform-Tools for Windows from developer.android.com.
  2. Extract to a simple path like C:\adb\.
  3. Add C:\adb\ to the system Path variable: System Properties → Advanced → Environment Variables.
  4. Install the official Xiaomi OEM USB Drivers so Windows correctly identifies the device in debug mode.

PowerShell note: if you haven't added ADB to Path, prefix every command with .\ - e.g. .\adb shell pm disable-user ...

Enabling USB Debugging on the Phone (All Models)

  1. Go to Settings → About phone and tap MIUI Version or OS Version (HyperOS) 7 times in a row until you see "You are now a developer!"
  2. Go back to the main Settings menu → Additional settings → Developer options.
  3. Enable USB debugging.
  4. Connect the phone to your PC via USB. Tap Allow on the authorization dialog that appears on the phone screen.

Verify the connection:

adb devices
# List of devices attached
# RF8N51XXXXX    device
Enter fullscreen mode Exit fullscreen mode

If you see device - you're connected and ready.


Section 3. The Debloat: ADB Commands by Category

Two core commands - know the difference

# FREEZE: disables the package but keeps it on disk
# The service stops running; reversible with `adb shell pm enable <package>`
adb shell pm disable-user --user 0 <package.name>

# UNINSTALL (for current user only): used when Xiaomi blocks freezing
# with a SecurityException error. Does NOT touch the system partition.
adb shell pm uninstall -k --user 0 <package.name>
Enter fullscreen mode Exit fullscreen mode

Safety note: neither command modifies the /system partition. The bootloader stays locked. If anything breaks - adb shell pm enable <package> reverses it instantly, or a factory reset restores everything.


1. Ad Networks and Telemetry Trackers

These packages run Xiaomi's ad serving (MSA), analytics collection, and crash reporting daemons that periodically wake the CPU in the background:

adb shell pm disable-user --user 0 com.miui.msa.global
adb shell pm disable-user --user 0 com.miui.analytics
adb shell pm disable-user --user 0 com.xiaomi.joyose
adb shell pm disable-user --user 0 com.miui.daemon
adb shell pm disable-user --user 0 com.xiaomi.discover
adb shell pm disable-user --user 0 com.miui.bugreport
Enter fullscreen mode Exit fullscreen mode

2. Xiaomi App Store and Payment Services

GetApps (formerly Mipicks) and Mi Pay are deeply integrated - the shell blocks standard freeze attempts and throws a SecurityException. Use the user-space uninstall instead:

adb shell pm uninstall -k --user 0 com.xiaomi.mipicks
adb shell pm uninstall -k --user 0 com.mipay.wallet.in
adb shell pm disable-user --user 0 com.xiaomi.payment
adb shell pm disable-user --user 0 com.tencent.soter.soterserver
Enter fullscreen mode Exit fullscreen mode

3. Ad-Heavy Browsers and Media Apps

The built-in browser, video player, and music player are all loaded with news feeds, ads, and background network traffic:

adb shell pm disable-user --user 0 com.mi.globalbrowser
adb shell pm disable-user --user 0 com.android.browser
adb shell pm disable-user --user 0 com.miui.player
adb shell pm disable-user --user 0 com.miui.videoplayer
Enter fullscreen mode Exit fullscreen mode

4. Mi Cloud Sync Daemons (if you use Google Drive)

If you don't use Xiaomi's cloud services, these background sync daemons serve no purpose and consume battery:

adb shell pm disable-user --user 0 com.miui.cloudservice
adb shell pm disable-user --user 0 com.miui.cloudbackup
adb shell pm disable-user --user 0 com.miui.micloudsync
Enter fullscreen mode Exit fullscreen mode

⚡ Rollback any package instantly:

adb shell pm enable com.package.name

Section 4. UI Cleanup: Getting to Clean Android

With the system service chaos eliminated, these final tweaks complete the transformation:

1. Replace the launcher. The stock MIUI/HyperOS launcher constantly holds widget feeds and ad recommendation cards in memory. Lawnchair 2 or Nova Launcher are lightweight, fast, and ad-free. Caveat: recent MIUI/HyperOS versions block full-screen Android gesture navigation on third-party launchers. If native gestures matter to you, stay on the stock launcher but disable Recommendations in its settings.

2. Switch to Google's lightweight app suite. Replace Xiaomi's bloated contacts, dialer, and messaging apps with the clean Google versions from the Play Store: Phone, Messages, and Gboard. They're faster, get regular security updates, and carry zero internal spam.

3. Ditch the iOS-style Control Center. The new MIUI/HyperOS notification shade renders blur effects that are surprisingly heavy on the GPU. Go to Settings → Notifications & Control Center and switch back to the classic vertical notification panel - it's snappier and uses less memory.


Section 5. Safety, Banking Apps, and OTA Updates

Does this break SafetyNet / Play Integrity?
No. The bootloader stays locked. Root is never obtained. The /system partition is untouched in read-only mode. Google Pay, banking apps, and any app that checks Play Integrity will continue to work normally - no Magisk, no hiding, no patches needed.

Do OTA updates still arrive?
Yes. The device continues to receive official OTA updates normally. What to expect: after a major system upgrade (e.g. MIUI → HyperOS transition), some frozen packages may re-activate. Just re-run the relevant ADB commands. The whole process takes under 5 minutes the second time.

What if I factory reset?
A hard reset restores the device to factory state - every disabled and uninstalled package returns exactly as shipped. The debloat is fully reversible.


Results After Debloating

Based on my testing across multiple Xiaomi and Redmi devices:

Metric Before After
Free RAM (6 GB device) ~1.8 GB ~2.4-2.6 GB
Background processes 35-42 20-25
System ads Everywhere Gone
Google Pay / banking apps ✅ Working ✅ Still working
OTA updates ✅ Arriving ✅ Still arriving

The RAM reclaim of 500-800 MB is the most impactful change on mid-range devices - it directly translates to fewer app reloads and smoother multitasking.


FAQ

Is there any risk of bricking the device?
No. The /system partition stays read-only and untouched. The worst case scenario when disabling a critical package is a temporary UI crash, which is fixed by re-enabling the package via ADB or doing a factory reset. No permanent damage is possible through this method.

Will OTA updates keep arriving after debloating?
Yes. The device receives all official OTA updates normally. Major OS upgrades (like the MIUI → HyperOS transition) may re-enable some frozen services - just re-run the ADB commands to freeze them again. The process takes a few minutes.


Conclusion

ADB-based debloating is the most rational and safe optimization method for Xiaomi devices in 2026. No warranty loss, no SafetyNet breakage, no week-long wait for a bootloader timer. You get a clean, fast, predictable device with 500-800 MB of recovered RAM, zero system ads, and better battery life from eliminating background telemetry.

Drop a comment with your experience - which packages consumed the most resources on your specific MIUI or HyperOS version, and whether you ran into any issues on Linux or Windows. 👇

Top comments (0)