Xiaomi Redmi smartphones based on MIUI firmware often come with pre-installed applications that the user does not always need. Some of them can not be removed by standard methods, but they can be turned off so that they do not waste battery and memory. In this article, we will discuss all the current ways to deactivate programs, from built-in MIUI tools to hidden functions for power users.
It is important to understand the difference between the terms: Deletion is the complete erasure of an application from a device (perhaps not for all system programs); Disabling is the deactivation of an application without deleting its files (stops background processes); Stopping is a temporary suspension (before the device restarts).
Redmi with MIUI 12-14 has all three options available, but implementation depends on the type of application and firmware version.
If you find an app that is self-activating after an update or reboot, or if its icon continues to appear on the menu, itβs a sign of incomplete shutdown, and below youβll find solutions for such cases, including working with ADB and hidden settings.
1. Standard shutdown via MIUI settings
The easiest way is to use the built-in MIUI tools, which is suitable for most user and part of the system applications, and important: some programs (such as Mi Security or GetApps) can be protected from shutdown at the firmware level.
To deactivate the application:
- Open Settings β Applications β Application Management.
- Select the desired app from the list (use search if it is not in the main list).
- Click Disable (the button will appear if the application can be deactivated).
- Confirm the action in the dialog window.
Once you disable the app icon, it will disappear from the menu and the background processes will stop. However, the program files will remain in the device's memory. To return the application, repeat the steps and click Enable.
2. Removal of applications (including system)
Not all applications can be removed through the standard interface. System programs (e.g. Mi Video, Mi Music, Browser) require additional actions.
- π± Through Settings: Some apps (such as Facebook or Netflix if preinstalled) have a Remove button instead of Disable.
- π§ With help. ADB: to remove secure system applications (requires a computer and debugging) USB).
- βοΈ Through TWRP: If the device has custom recavers, you can remove any application manually.
β οΈ Warning: Removing system applications may lead to unstable operation MIUI or update errors. Backup data before deleting.
Example of commands to delete via ADB (requires USB debugging enabled):
adb shell pm uninstall --user 0 com.miui.videoplayerWhere com.miui.videoplayer is the batch name of the application (you can find it through programs like App Inspector).
Enable debugging over USB in the developer settings
Install ADB-computer-driver
Create a backup copy of the data
Check the batch name of the application
Connect your phone to your PC in file transfer mode-->
3. Stopping background processes
If an application doesn't need to be removed, but it's actively consuming battery or traffic, it can be forcibly stopped, and that's a temporary measure, and once you reboot your device or update your application, it's going to start again.
How to stop it:
- Go to Settings β Applications β Application Management.
- Select the appropriate application.
- Press Forced Stop (button is only active if the application is running).
To automatically stop background processes, use battery optimization:
- π Open the Settings. β Battery and productivity β Battery consumption management.
- π Select the application and set a limit Limit background activity.
- π Enable Automatic Optimization for all applications.
β οΈ Warning: System process shutdowns (e.g., com.miui.securitycenter) may cause disruptions MIUI, including the inability to connect to the network or use a camera.
4. Hiding icons without disabling the application
If an application needs to be left active (for example, for notifications), but its icon interferes with the menu, you can hide it without completely turning it off, which works for most user programs.
Instructions:
- Press and hold the app icon on the home screen.
- In the menu that appears, select Remove or Hide (on some versions of MIUI - In the applet).
- Confirm the action. The icon will disappear, but the app will remain in the system.
To return the icon:
- π Open the Settings. β Main screen screen.
- π± Select Hidden Apps and uncheck the box from the desired.
β Useful tip: if the hidden icon reappears after the update MIUI, Try using a third-party launcher (like Nova Launcher) that allows you to flexibly customize the visibility of apps.
What to do if the βDisableβ button is inactive?
5. Disable Autostart and Notifications
Many applications run automatically when you turn on your phone or connect to the network, and it costs resources even if you're not using the software, to prevent auto-start:
Steps:
- Go to Settings β Applications β Application Management.
- Select the application and press Autostart.
- Turn off the slider Allow Auto Start.
To disable notifications:
- π In the same app menu, select Notifications.
- π« Turn off the slider Show notifications.
- π΅ If necessary, block pop-up windows in the Pop-up Notifications section.
On some Redmi models (e.g. Redmi Note 11 and later), auto-run system applications cannot be disabled through the standard interface β you will need to use ADB or third-party utilities like Greenify.
6. Working with system applications through ADB
For advanced users who are ready to work with the command line, ADB (Android Debug Bridge) offers advanced application management capabilities, which allows you to disable even those programs that are locked in the MIUI interface.
Step-by-step:
- Turn on Developer Mode (7 times click on the MIUI version in Settings β About Phone).
- Activate Debugging by USB in Settings β Additional β For developers.
- Connect your phone to your computer and confirm your trust in the device.
- Open the command line (Windows) or terminal (macOS/Linux) and type:
adb devices(Your device should appear)
adb shell pm disable-user --user 0 com.miui.weather2(Replace com.miui.weather2 with the batch name of the desired application)
To turn the app back on, use:
adb shell pm enable com.miui.weather2β οΈ Attention: misuse ADB It can lead to disruptions in work. MIUI. Do not disable critical system processes (e.g. com.android.phone or com.miui.home).
π‘
Before working with ADB, back up your data through Settings β Additional β Backup and Reset. This will allow you to restore the system in case of an error.
Comparison of application disabling methods
| Method | Type of application | PC required | Reversibility | Risk to the system |
|---|---|---|---|---|
| Standard shutdown | User, some system-specific | β No. | β Yes. | β οΈ Low. |
| Removal via ADB | Any (except the critical) | β Yes. | β No (reinstallation required) | β οΈβ οΈ Medium. |
| Stopping processes | Anybody. | β No. | β Yes (before rebooting) | β οΈ Low. |
| Hiding icons | Customized | β No. | β Yes. | β Absent. |
| Removal via TWRP | Anybody. | β Yes. | β No (backup required) | β οΈβ οΈβ οΈ High-pitched |