惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

P
Proofpoint News Feed
博客园_首页
WordPress大学
WordPress大学
大猫的无限游戏
大猫的无限游戏
有赞技术团队
有赞技术团队
阮一峰的网络日志
阮一峰的网络日志
Hugging Face - Blog
Hugging Face - Blog
博客园 - 【当耐特】
酷 壳 – CoolShell
酷 壳 – CoolShell
Y
Y Combinator Blog
Vercel News
Vercel News
The GitHub Blog
The GitHub Blog
T
The Blog of Author Tim Ferriss
云风的 BLOG
云风的 BLOG
博客园 - 司徒正美
Engineering at Meta
Engineering at Meta
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
J
Java Code Geeks
Stack Overflow Blog
Stack Overflow Blog
N
Netflix TechBlog - Medium
Martin Fowler
Martin Fowler
宝玉的分享
宝玉的分享
G
Google Developers Blog
Last Week in AI
Last Week in AI

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Debloating MIUI / HyperOS Without Root: A Practical ADB G...
Aribu js · 2026-06-27 · via DEV Community

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

Verify the installation:

adb version
# Android Debug Bridge version 1.0.41

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

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>

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


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


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


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


⚡ 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. 👇