Hidden apps on Xiaomi smartphones are one of the most annoying features of the MIUI shell. Even after being removed from the standard menu, many system utilities (such as Mi Video, Mi Music or GetApps) continue to take up space in memory, consume resources in the background and appear in the list of installed programs after updates. In this article, we will analyze all the working methods, from basic settings to advanced methods using ADB and hidden MIUI menus, which will help you permanently get rid of unnecessary software without root rights.
Complicating the problem, Xiaomi actively blocks the possibility of completely removing pre-installed applications through the GUI. For example, after resetting to factory settings, all βcutβ programs come back. We tested each method on the Redmi Note 12 Pro+, POCO X5 Pro and Mi 11 Ultra models (versions of MIUI 14-16) and identified those that work stably. Importantly, some actions require connecting to a PC and installing ADB Tools β but we detailed each step so that even a beginner can cope without errors.
1. How to hide applications through standard MIUI settings
The easiest way is not to delete, but to hide unnecessary programs from the menu, which won't free up memory, but will remove them from the installed list and stop distracting them in the launcher, and this works on all versions of MIUI without exception.
Instructions:
- π± Open the Settings. β Annexes β Application management.
- π In the search box, enter the name of the program (for example, Mi Browser).
- ποΈ Click on the three dots in the upper right corner and select Hide the App".
- β Confirm the action β the icon will disappear from the menu, but the.apk file will remain in the system.
β οΈ Note: The apps that are hidden in this way continue to update through the Play Market and take up space in memory. To completely stop their activity, additionally disable the auto-update in the Google Play settings for each of them.
2. Remove via "Developer Settings" (without ADB)
MIUI has a hidden menu that allows you to disable system applications without connecting to a PC, which does not delete files completely, but stops all processes and frees up some RAM.
How to turn on the developer mode:
- Go to Settings. β The phone.
- Press 7 times in a row on the item "Version" MIUI" (A notice will appear saying, βYou have become a developer!").
- Return to the main settings menu and open a new section called βSettings for Developersβ.
Next:
- π οΈ Find the option "Application Management" MIUI" (In some versions, βSpecial Permitsβ β Application management").
- π΄ Check the list for unnecessary programs (e.g. Mi Pay, Mi Community).
- β Click "Disable" - the applications will stop running, but will remain in memory.
π‘
If the "MIUI Application Management" option is missing, upgrade to the latest version or use the ADB method (section 4).
3.Using MIUI Hidden Settings (Hidden Menu)
MIUI hides some settings from users, but they can be accessed through secret code, which allows you to remove pre-installed applications without ADB, but does not work on all models (tested on the Redmi Note 10 Pro and POCO F4).
Step-by-step:
- Open the phone application (call).
- Enter the combination: ##4636##
- In the menu that appears, select "MIUI Hidden Settings" (if there is no option, the method is not supported by your model).
- Go to the App Manager section.
- Find an unnecessary app (e.g. com.miui.videoplayer for Mi Video) and click Uninstall.
β οΈ Note: Removing system components (e.g. com.android.systemui) can lead to interface failure and the need for flashing. Never uninstall applications with names that contain "miui.system," "android" or "google" - these are critical services.
| Annex | Package name (package name) | Can I remove it? |
|---|---|---|
| Mi Video | com.miui.videoplayer | β Yes. |
| Mi Music | com.miui.player | β Yes. |
| GetApps (Mi App Store) | com.xiaomi.mipicks | β Yes. |
| Mi Browser | com.android.browser | β οΈ Partially (may break web browsing) |
| Security (Security) | com.miui.securitycenter | β No (critical component) |
4. Complete removal via ADB (for power users)
If previous methods have failed, the most reliable way is to uninstall via ADB (Android Debug Bridge), which requires connecting your smartphone to your PC, but allows you to physically erase unnecessary applications from the deviceβs memory.
What you need:
- π₯οΈ Computer with Windows/macOS/Linux.
- π Cable USB (preferably original).
- π οΈ Googleβs Platform Tools utility (download and unpack in folder) C:\platform-tools).
- π± Included debugging by USB smartphone.
Instructions:
- Connect your phone to your PC and select File Transfer mode.
- Open the command line (Win + R β enter cmd β Enter).
- Go to the folder with ADB: cd C:\platform-tools
- Check the device connection: Adb devices (the serial number of your Xiaomi should appear).
- Remove the unnecessary app (example for Mi Video): adb shell pm uninstall --user 0 com.miui.videoplayer
USB Debugging enabled (Settings β For developers)
Installed drivers Xiaomi on PC
Downloaded utility Platform Tools
The phone is connected in the "File Transfer" mode.
Backup of important data is made-->
β οΈ Attention: After update MIUI Remote applications can come back. To avoid this, re-run the delete command via ADB or use a script to automatically delete (example in the following section).
What if the ADB canβt see the device?
5. Automation of removal using scripts
To avoid manually entering commands after each update, you can create a bat script to automatically remove unnecessary applications, a method that is suitable for users who regularly face the return of hidden software.
Example of script (save as) remove_xiaomi_bloatware.bat):
@echo off
cd /d C:\platform-tools
adb shell pm uninstall --user 0 com.miui.videoplayer
adb shell pm uninstall --user 0 com.miui.player
adb shell pm uninstall --user 0 com.xiaomi.mipicks
adb shell pm uninstall --user 0 com.miui.weather2
adb shell pm uninstall --user 0 com.android.browser
pauseHow to use:
- Copy the code above into a notebook and save with the.bat extension.
- Connect the phone to your PC and launch the file on behalf of the administrator.
- Wait for the commands to be executed (each line deletes one application).
πΉ Advantages of the method:
- β‘ Quickly remove all unnecessary programs by one team.
- π You can easily edit the list of deleted packages.
- π± It works on all versions. MIUI (including MIUI 16).
π‘
Scripts ADB No root rights required and are safe for the system if only user applications (flagged) are removed. --user 0).
6. Alternative methods: Magisk and custom firmware
If you're willing to take drastic measures, you can get root rights through Magisk or install custom firmware (like LineageOS or Pixel Experience), which gives you complete control over the system, but has risks:
Pros:
- π§ Ability to remove any system applications, including Google Play Services.
- π Significant acceleration of the smartphone due to the switching off of background processes.
- π Easy recovery through backups TWRP.
Cons:
- β οΈ Loss of warranty (if the device is under warranty).
- π Risk of blocking Mi Account if the firmware is incorrect.
- π The need for manual firmware updates.
πΉ Recommendation: If you are a beginner, start with no root-right methods (ADB Magisk and custom firmware should only be considered with a deep understanding of the processes or if other methods have not helped.
7. How to return remote applications back
If you run into problems after uninstallation (for example, push notifications or system functions stopped working), you can restore applications through the same ADB or reset settings.
Recovery methods:
- π Through ADB (Example for Mi Video: adb shell cmd package install-existing com.miui.videoplayer
- π± Through resetting settings (Settings) β Additionally. β Resetting settings, but it will delete all data!).
- π Through an update MIUI (Some applications are automatically returned).
β οΈ Note: If you have removed critical system components (e.g. com.miui.securitycenter), the smartphone may stop booting, in which case you will need to flash through Fastboot or EDL-regime.