Hidden apps on Xiaomi, Redmi and POCO smartphones take up precious space in memory, consume battery power in the background and are often unnecessary. Although MIUI allows you to disable some of the preinstalled software, many system services remain unavailable through the standard interface. In this article, we will discuss 5 proven methods to get rid of hidden applications β from simple ways without superuser rights to advanced techniques using ADB and modified firmware.
It's important to understand that not all hidden applications can be removed without consequences. Some of them are critical to MIUI operation, because removing them can cause a camera malfunction, a mobile network, or even a complete system failure. We'll take a look at which applications can be removed safely and which ones should not be touched. And you'll learn how to restore remote software if something goes wrong.
The instructions in this article are relevant for all modern Xiaomi devices based on MIUI 12-14 and HyperOS, including the Redmi Note 12/13, POCO F5/X5, Xiaomi 13/14 and others. If your device runs on an older version of the firmware, some methods may not work β we will mention this too.
1.What are hidden apps on Xiaomi and why they canβt be removed in standard ways
Hidden (or system) applications on Xiaomi fall into three categories:
- π± Pre-installed services MIUI β Apps like Mi Browser, Mi Video, Music that can be disabled but not deleted through settings.
- π§ Android service components like Android Auto, Google Play Movies, Mi Pay that are not used by most users.
- βοΈ Critical system processes β MiuiDaemon, SecurityCenter, SystemUI, the removal of which will disrupt the operation of the phone.
Why is Xiaomi blocking removal? The manufacturer argues that it is firmware stability and security. Many system applications are interrelated: for example, removing MiuiGallery can disrupt photo processing in other services. In addition, some applications (for example, Mi Credit or Mi Finance) generate revenue for Xiaomi through advertising and affiliate programs.
The standard application manager in MIUI allows you to only disable some software, but not delete it completely. Even after disabling, application files remain in the device's memory, taking up from 50 MB to 1 GB depending on the model. The only way to completely get rid of unnecessary programs is to use alternative methods, which we will describe below.
Method 2: Disable hidden applications via MIUI settings (without root)
If you don't have to completely remove applications, but you just stop them and hide them from the menu, you can do without complex manipulations. This method is safe and requires no special knowledge.
Step-by-step:
- Open Settings β Applications β Application Management.
- Click on the three dots in the upper right corner and select Show All Applications (or System Processes in newer versions of MIUI).
- In the list, look for an unneeded app (such as Mi Browser or Mi Music).
- Click on it, then select Disable (or Remove Updates if the button is active).
- Confirm the action in the window that appears.
What applications can be turned off without risk:
- π Mi Browser (if you use Chrome or other browser)
- π΅ Mi Music (if you listen to music on Spotify or YouTube Music)
- π¬ Mi Video / Video Player
- π³ Mi Pay/Mi Credit (if you donβt use Xiaomi Payment Services)
- π‘ Mi Remote (unless you use your phone as a remote control)
Make a backup copy of important data
Check if the application is used by other services
Remember the name of the application in case of recovery
Reboot your phone after disconnecting-->
Limitations of the method:
- Applications remain in the deviceβs memory (just donβt start).
- Some system services (e.g., SecurityCenter) cannot be disabled.
- After resetting or updating MIUI, disabled applications can be activated again.
π‘
If the βDisableβ button is inactive, try removing all app updates first (if any) and then try again.
Method 2: Removal via ADB (without root but with a computer)
ADB (Android Debug Bridge) is an Android debugging tool that allows you to manage system files without superuser permissions, and it can completely remove many hidden applications that cannot be uninstalled in standard ways.
What you need:
- π» Computer with Windows, macOS or Linux.
- π USB-cable (preferably original).
- π± Included debugging by USB phone-on.
- π οΈ Utility. ADB (You can download from the official Android website).
Step-by-step:
- Activate USB debugging: Go to Settings β About Phone. Click 7 times on MIUI to activate Developer Mode. Go back to Settings β Additional β Developer. Enable USB debugging and confirm action.
- Connect your phone to your computer: Use the original cable. Select File Transfer Mode (MTP) on your phone. Confirm trust in your computer when you first connect.
Install ADB and check the connection:
- Download Googleβs Platform Tools and unpack the archive.
- Open the command prompt (Windows) or terminal (macOS/Linux) in the folder with ADB.
- Enter the command: Adb devices If the phone is connected correctly, you will see its serial number.
- Get a list of all apps: adb shell pm list packages Copy the names of unnecessary packages (e.g. com.android.browser for Mi Browser).
- Delete the application: adb shell pm uninstall --user 0 name packet For example, to remove Mi Browser: adb shell pm uninstall --user 0 com.android.browser
Advantages of the method:
- π± It does not require a connection to a computer.
- π Shows hidden system applications that are not in the standard manager.
- π Allows you to restore deleted applications (if they were simply disabled).
Disadvantages:
- β Not all apps can be removed (many only turn off).
- β οΈ On the new versions MIUI 14 and HyperOS may be blocked from some functions.
- π Careful β Removing critical components can break the system.