What to remove in MIUI 11 on Xiaomi to save battery power: full guide

Why does MIUI 11 run out of battery so fast?

Xiaomi’s MIUI 11 shell is known for its functionality, but not all users are happy with its appetite for energy. Even on relatively new models like the Redmi Note 8 Pro or Mi 9T, the battery can run out in a day of active use – and not only the hardware, but also the software features of the firmware.

The fact is that MIUI 11 runs dozens of background processes by default, many of which duplicate Android features or are simply useless for most users: for example, Mi Cloud Sync constantly syncs data, Security scans the system in real time, and Mi Video and Mi Music consume resources even if you do not use them, but the worst of all are hidden system services that can not be disabled by standard means.

In this article, we’ll look at which MIUI 11 components can be safely removed or disabled to extend battery life by 20-40% without compromising basic smartphone functions, how to clean up your startup, which apps to freeze, and how to set up energy savings at the Android core level.

Top.-5 embedded MIUI 11, which can be removed without consequences

The first thing to start with is uninstalling pre-installed software that not only takes up space, but also consumes charge in the background. Most of these applications duplicate the functions of Google or third-party services, so removing them will not affect the system.

  • πŸ“± Mi Browser is Xiaomi’s browser with aggressive advertising and background activity. Replace it with Chrome or Firefox.
  • 🎡 Mi Music is a player that scans media files even when you're not using it: VLC poweramp.
  • 🎬 Mi Video is similar to a music player but for video, and consumes up to 5-7% of the charge per day when used passively.
  • πŸ“§ Mi Mail is an email client with data leaks and constant account checks.
  • πŸ“Š Mi Community is a Xiaomi forum that updates in the background and sends notifications. Useful only to brand enthusiasts.

To remove these apps, you’ll need root rights or access to ADB. If they’re not, you can simply turn the programs off in settings (Settings β†’ Applications β†’ Application Management β†’ Select App β†’ Disable).

⚠️ Note: Do not remove system applications called com.android. or com.miui. unless you are sure of their purpose.This may lead to broken features (for example, disappear settings or stop working camera).

πŸ“Š What appendix MIUI You're the first to delete?
Mi Browser
Mi Music
Mi Video
Mi Community
Nothing removed.

How to disable auto-run unnecessary services in MIUI 11

Even after removing pre-installed applications, MIUI 11 continues to run background processes that consume charge.

  • πŸ”„ Auto-update apps via the Mi App Store (works even if you don’t use it).
  • πŸ“‘ Constantly search for Wi-Fi and Bluetooth devices (on by default for features like Mi Share).
  • πŸ“ Geodata collection for Mi Location Service (used by Xiaomi advertising services).
  • πŸ›‘οΈ Background security check through Security (scans files every 2-3 hours).

To disable autostart:

  1. Go to Settings β†’ Applications β†’ Permissions β†’ Autorun.
  2. Turn off auto-run for all applications except instant messengers and mission-critical services (e.g. Telegram or Google Play Services).
  3. Return to Settings β†’ Battery and Performance β†’ Battery Consumption Management.
  4. Select the Power Saving mode and manually blacklist applications that should not work in the background (such as games or social networks).

Disable Auto-Run for Unnecessary Applications|Establish an energy-saving regime|Add games to the blacklist|Disable background synchronization Mi Cloud|Geolocation verification only on request-->

For advanced users, there is another way to disable services through ADB. For example, the team below prohibits background activity for Mi Push Service (responsible for unnecessary notifications):

adb shell pm disable-user --user 0 com.xiaomi.mipush.sdk

Hidden MIUI 11 settings to save battery

Xiaomi hides some power saving options to make the interface easier, but they can be activated via secret menus or ADBs.

Setting upHow to turn it onThe effect
Deep energy conservationType ##4636###, select Usage statistics β†’ Battery usage β†’ Force deep sleepForced to put down apps after 5 minutes of inactivity
Disabling AODSettings β†’ Screen β†’ Always-on display β†’Saving up to 10-15% of charge per night
FPS LimitationEnable Settings β†’ Additional β†’ Developer β†’ Limit background processes (4)Reduces the load on the processor when folded applications
Disconnecting MiuiOptimizationThrough ADB: adb shell settings put global miui_optimization 0Remove unnecessary animations and background tasks

The Deep Energy Saving setting is especially useful, blocking wake-locks that are often used by social media and instant messengers, such as Facebook waking up your phone 200+ times a night even if you don’t have notifications.

⚠️ Warning: Disabling MiuiOptimization may cause some features to disappear MIUI (For example, gestures or themes. Before changing, back up through Settings. β†’ Additionally. β†’ Backup.

What are wake-locks and why are they dangerous?
Wake-locks are mechanisms in Android that prevent the device from going to sleep, for example, when you watch a video, the system creates a wake-lock to keep the screen from going out. The problem is that many apps (especially social networks) abuse them, keeping the processor active even when the phone is idle. In MIUI 11, this is compounded by the fact that the shell itself adds its wake-locks to back-end sync with Xiaomi servers.

What System Applications Can Be Freezed (without Root)

If you don't have root rights, but you want to stop unnecessary system processes, you can use ADB freezing. This method temporarily puts applications to sleep without removing them completely. Here's a list of safe services to freeze:

  • πŸ“² com.miui.analytics – collection of usage statistics (sends data to Xiaomi).
  • πŸ“‘ com.xiaomi.discover – a service for content recommendations (advertising in the Internet) MIUI).
  • 🎯 com.miui.systemAdSolution – a targeted advertising system.
  • πŸ”„ com.xiaomi.market - Mi App Store (if you don't use it).
  • πŸ“¦ com.miui.hybrid is a hybrid service for web applications (rarely used).

To freeze the application, execute the command:

adb shell pm disable-user --user 0 title.package

For example, to disable the collection of analytics:

adb shell pm disable-user --user 0 com.miui.analytics

To defrost the application back, replace the disable-user with enable:

adb shell pm enable com.miui.analytics

πŸ’‘

Before freezing, check if the application is affected by a critical function, for example, disabling com.xiaomi.finddevice will disrupt the search for the phone through Mi Account.

Optimizing the Android kernel for maximum savings

For users with unlocked bootloader and root rights, deeper kernel-level settings are available, which allow you to limit the clock speed of the processor, disable unnecessary cores, or change the task scheduler.

The most effective tweaks are:

  1. Limiting the maximum CPU frequency to 1.5-1.8 GHz (instead of the standard 2.0-2.8 GHz) reduces heating and energy consumption by 15-25%.
  2. Switching to the schedutil scheduler (instead of cfq or ondemand) is better optimized for energy saving.
  3. For example, on the Snapdragon 730, you can turn off 2 Cortex-A76 cores, leaving only the energy-efficient Cortex-A55.
  4. Reduce the timeout of the transition to deep sleep from 500 ms to 100 ms.

To apply these settings will need:

  1. Install Kernel Adiutor or FrancoKernel Manager from Google Play.
  2. Manually change the settings in the CPU or Governor section.
  3. Reset the device.

⚠️ Warning: Incorrect kernel settings can cause the device to overheat, freeze, or even "brick" before experimenting, check for compatibility of tweaks with your CPU model (e.g., Snapdragon 855 and Helio). G90T require different approaches).

πŸ’‘

The most autonomy gains are kernel optimization, but it requires root rights and technical nuances, and for most users, settings at MIUI and ADB are enough.

What if the battery is running down quickly?

If after all the optimizations, the charge still goes away too quickly, the problem may lie in:

  • πŸ”‹ Worn-out battery (check status through AccuBattery – if the capacity has fallen below 80%, it’s time to change the battery).
  • πŸ“± Hardware malfunctions (for example, a faulty Wi-Fi module or a faulty Wi-Fi module) GPS constantly consumes energy).
  • πŸ› οΈ Incorrect firmware (castom) ROM orbeta MIUI Often have power-consuming bugs).
  • πŸ”„ Background activity of third-party applications (check in Settings) β†’ Battery. β†’ Battery utilization).

For diagnosis:

  1. Install BetterBatteryStats (requires root) and check what processes are waking the device (Partial Wakelocks).
  2. Run CPU Spy (shows how long the processor has been running at high frequencies).
  3. Check the battery temperature in Settings β†’ Battery β†’ Condition. If it is constantly above 40 Β° C, this is a sign of overload.

If the battery is a problem, it can be replaced on its own (on most Xiaomi models it takes 15-20 minutes).The cost of the original battery for the Redmi Note 8 Pro or Mi 9T is about 1500-20000 rubles.

FAQ: Frequent questions about battery savings MIUI 11

Can I turn off the Mi Cloud without consequences?
Yes, but note that this will disable synchronization of contacts, notes and backups. If you use Google Account for these purposes, Mi Cloud can be completely deleted via ADB: adb shell pm uninstall -k --user 0 com.xiaomi.cloud After that, no notifications will come about about firmware updates through Mi Cloud, but this is not critical.
How to return auto-run for a separate application?
Go to Settings β†’ Applications β†’ Application Management β†’ Select an application β†’ Autostart and turn on the switch. If the option is not available, then the application is blocked at the MIUI level (for example, for Facebook, autorun is forced to turn off).
Does dark theme really save you charge?
Yes, but only on smartphones with AMOLED-screens (e.g., Mi) 9T or Redmi K20 Pro) On devices with IPS (For example, Redmi Note 8) no difference. Savings are up to 5-10% of charge per day with active use.
What if notifications stop coming after optimizations?
Chances are you have disabled auto-start or frozen the system service com.xiaomi.xmsf (responsible for push notifications). Unfreeze it via ADB: adb shell pm enable com.xiaomi.xmsf Also check the power saving settings for instant messengers (Settings β†’ Battery β†’ Application Selection β†’ No Limits).
Should I upgrade to MIUI 12/13 for better autonomy?
There is no definitive answer. MIUI 12+ is optimized better for new models (like the Redmi Note 10 Pro), but on older devices (like the Mi 8 or Redmi Note 7) it can run slower and consume more power due to increased hardware requirements. Before upgrading, check your model's user reviews on forums like 4PDA or XDA-Developers.