Xiaomiβs MIUI-based smartphones often come with pre-installed apps that the user doesnβt always need, some of which canβt be removed by standard means, but can be turned off so they donβt consume battery power, take up memory space, or appear on the menu. In this article, weβll look at all the available ways, from simple to advanced, including hidden MIUI features and working with ADB.
It is important to understand the difference between deleting, disabling and stopping an application:
- ποΈ Delete β complete erasure of the program from the device (possibly not for all system applications).
- βοΈ Disconnection β the application remains in memory, but stops working and does not update.
- βΈοΈ Stop β temporary pause of the background, but the application can start again when restarted.
If you want to just hide the app from the menu, but keep it working, that's also possible. Let's look at each method in detail, taking into account the features of the latest versions of MIUI 14 and MIUI 15 (including the Redmi, POCO and Black Shark models).
1. Standard disconnection through settings
The easiest way is to use the built-in MIUI tools. It is suitable for most pre-installed applications (e.g. Mi Browser, Mi Music, GetApps), but does not work for mission-critical system services.
Instructions:
- Open Settings β Applications β Application Management.
- Find the app you want (use the search at the top if itβs not in the visible area).
- Slip by name, then select Disable (or Delete if the button is active).
- Confirm the action in the pop-up window.
Check if the application is system-based (e.g., Services & feedback is best left unattended)
Backup important data (if the application stores user files)
Make sure you have enough rights (some firmware requires unlocking the bootloader)
-->
β οΈ Note: Disabling some applications (such as Security or Mi Account) may cause system failures. Xiaomi specifically blocks such components from being disabled.
| Type of application | Can I turn it off? | Can I remove it? | Risks. |
|---|---|---|---|
| Pre-installed (Mi Browser, Mi Video) | β Yes. | β No, no. ADB) | Low. |
| System Services (Security, Mi Account) | β No. | β No. | High (system failure) |
| Third-party (user-installed) | β Yes. | β Yes. | No. |
| Google Play Services (Play Market, Google Play Services) | β οΈ Partially (may disrupt other applications) | β No. | Average. |
2. Hiding applications without disabling
If you just need to remove an app from the menu but leave it working (for example, to save space on the home screen), use the hide feature. This does not turn off the app, but makes it invisible in the list.
How to hide it:
- π± Open the Settings. β Main screen screen.
- π Choose Hide Apps (in some versions) MIUI This item is called Application Management. β Hide).
- β Tick the apps you want to hide and click Ready.
To return the hidden app:
- Click the empty space on the main screen.
- Select Settings β Show hidden applications.
- Take the boxes off the right programs.
π‘
Hidden applications can still be run through a system search (swipe down on the home screen) or through the All apps menu in the settings.
3. Disconnection via ADB (for power users)
Some system applications (e.g. mipay, miui.analytics) cannot be disabled via the standard interface, but this can be done using Android Debug Bridge (ADB).
Step-by-step:
- Turn on Developer Mode: Go to Settings β About Phone. tap on MIUI Version 7 times. Return to Settings β Additional β For Developers and activate Debugging over USB.
File transfer
ADB Tools
adb
adb devices
adb shell
pm list packages | grep 'miui' # list of Xiaomi packages
pm disable-user --user 0 com.xiaomi.mipay # example of Mi Pay shutdownList of safe to disable Xiaomi packages
β οΈ Warning: Incorrectly disabling system packages can cause the phone to reboot cyclically or not be logged in.Before experimenting, back up through Settings β Additionally. β Backup and reset.
4. Stopping application background activity
If an application can't be turned off, but it's using up battery in the background, it can be forcibly stopped and activity restricted, and it won't delete the program, but it will reduce its impact on performance.
How to limit background work:
- π Open the Settings. β Annexes β Application management.
- π Select the desired application.
- π Slip the battery. β Limit background activity.
- π« Enable the Autostop option (if available).
You can also turn off auto-start:
- Go to Settings β Applications β Autorun.
- Find the app in the list and deactivate the switch.
π‘
Stopping the application does not delete its data. To reset the program completely, use the Clear Data in its properties button.
5. Remove system applications without root (via ADB)
To completely remove pre-installed applications (deblotting) will require ADB and the command pm uninstall -k --user 0. This method does not require root rights, but removes the application only for the current user (it will remain in the system, but will not be visible and will not work).
Example of Mi Browser removal:
adb shell
pm uninstall -k --user 0 com.android.browserTo return the application, use the command:
cmd package install-existing com.android.browserβ οΈ Note: Deleting some packages (e.g. com.google.android.gsf) may disrupt Google Play Services and other dependent apps.
6.Alternative methods: Launcher and third-party utilities
If standard methods donβt work, you can use third-party launchers (like Nova Launcher or Apex Launcher) that allow you to hide applications without turning them off, and there are utilities like App Inspector or Package Disabler (require root or ADB).
Advantages of third-party launchers:
- π¨ Flexible configuration of the appearance.
- π Ability to hide system applications without risking stability.
- π Easy recovery of hidden programs.
Disadvantages:
- β οΈ Some functions (such as gestures) MIUI) They may not work properly.
- π Additional battery consumption (launcher runs in the background).
7.What to do if the application does not turn off?
If you see a message that says βItβs impossible to disableβ or βThis is a system applicationβ when you try to disable the application, try the following steps:
- Update MIUI: Newer versions of firmware sometimes unlock the disabling of previously protected applications. Check the updates in Settings β About Phone β System Update.
- Use ADB: As described in Section 3, some applications can only be disabled via the command line.
- Try custom Recovery: Installing TWRP and modified firmware (e.g. Xiaomi.eu) allows you to remove system applications without restrictions.
If nothing helps, you can only accept the presence of the application or consider the option of switching to custom firmware (for example, LineageOS), where there is no pre-installed software from Xiaomi.