Xiaomiโs MIUI-based smartphones are known for their abundance of pre-installed apps that users donโt always need. Many of them canโt be removed by standard means, but there are several ways to disable, hide, or freeze them. This article will help you figure out how to get rid of unnecessary software without harming the system, from simple methods through settings to advanced ADB solutions.
It's important to understand that not all applications can be turned off without consequences. Some system services are critical to the stable operation of MIUI. For example, disabling com.miui.system can lead to a cyclical reboot of the device. We will discuss in detail which applications are safe to remove and which are better left alone.
Why you canโt just remove all your apps from Xiaomi
MIUI firmware is closely integrated with Xiaomiโs branded services, many of which are responsible for:
- ๐ System Update (com.miui.updater)
- ๐ Security and Permits (com.miui.permcenter)
- ๐ฑ Work of gestures and interface (com.miui.home)
- ๐ถ Communication with Xiaomi servers (com.xiaomi.account)
Removal or disabling of such components may result in:
- ๐จ Loss of functionality (for example, the notification panel will disappear)
- ๐ Infinite Reboots (Bootloop)
- ๐ต Problems with connecting to a mobile network or Wi-Fi
- ๐ง Inability to update the firmware through standard means
However, there are also safe to remove applications, including:
- ๐ฌ Mi Video, Mi Music (media players)
- ๐ฎ Mi Game Center, Mi Game Turbo (Game Utilities)
- ๐ฑ Mi Browser, Mi Pay (alternative browsers and payments)
- ๐ฆ Cleaner, Security (if you use third-party analogues)
Method 1: Standard shutdown through settings
The easiest way is to disable the application without deleting it, and it will stay in the system, but it will stop working and consume resources, and it is suitable for most pre-installed programs.
Instructions:
- Open Settings โ Applications โ Application Management.
- Select the app from the list (such as Mi Video).
- Click Disable (the button will appear if the application can be deactivated).
- Confirm the action in the dialog window.
Make a backup copy of important data
Check if the application is system-based.
Make sure you have enough battery power (minimum 30%)
Close all background processes-->
โ ๏ธ Note: Some applications (e.g. com.miui.securitycenter) cannot be disabled through the standard menu.
After the shutdown:
- ๐ฅ The app will disappear from the menu and launcher
- ๐ It will not be updated through the Play Market.
- ๐ต Stop sending notifications and using the Internet
- ๐ Will not consume battery power in the background
Method 2: Removal via ADB (without root rights)
To remove system applications that cannot be disabled in the standard way, you will need an ADB (Android Debug Bridge) method, which does not require root rights, but requires connecting the smartphone to the computer.
Steps:
- Enable USB Debugging in Settings โ About Phone โ MIUI version (click 7 times, then go back to Additional โ For Developers).
- Connect your smartphone to your PC and confirm the debugging permission.
- Download ADB Tools and unpack it into a separate folder.
- Open the command line (cmd) in this folder and type:
adb devices(The name of your device should appear.)
adb shell pm uninstall -k --user 0 com.xiaomi.name.packetExamples of disposal packages:
| Annex | Packet name | Can I remove it? |
|---|---|---|
| Mi Video | com.miui.video | โ Yes. |
| Mi Music | com.miui.player | โ Yes. |
| Mi Browser | com.android.browser | โ Yes. |
| Mi Game Center | com.xiaomi.gamecenter.sdk.service | โ Yes. |
| Security (Security) | com.miui.securitycenter | โ No (critically for the system) |
โ ๏ธ Warning: Deleting com.miui.securitycenter or com.android.phone will cause your phone to fail. Always check the name of the package before you delete it.
๐ก
Before mass removal of applications via ADB, back up your data using adb backup -apk -shared -all -f backup.ab. This will allow you to restore the system in case of an error.
Method 3: Using Freeze Applications (without root)
If you don't want to connect your smartphone to your PC, you can use third-party tools to freeze applications, which block software but don't delete it completely.
- ๐ง App Quarantine (requires) ADB for initial setting)
- โ๏ธ Shelter (working through the Work Profile)
- ๐ Island (to create an isolated environment)
Example of the App Quarantine setting:
- Install an app from the Play Market.
- Connect your smartphone to your PC and execute the command:
adb -d shell pm grant com.ramdroid.appquarantine android.permission.WRITE_SECURE_SETTINGS- In the application, select programs for freezing.
- Press Freeze.
Advantages of the method:
- ๐ Ability to quickly defrost the application
- ๐ต No risk of damage to the system
- ๐ Savings in battery charge
What is a Work Profile in Android?
Method 4: Hiding applications through launcher
If you just interfere with the application icon in the menu, but you need functionality (for example, Mi Remote for managing equipment), you can hide it through the launcher settings.
Instructions for the standard MIUI launcher:
- Press and hold the empty space on the main screen.
- Select Launcher Settings (Icon) โ๏ธ).
- Go to Hidden Apps.
- Check the boxes of the programs you want to hide.
For the POCO Launcher launcher:
- Swipe right on the main screen.
- Select Hidden Apps.
- Add the programs you need to the list.
โ ๏ธ Warning: Hiding an application does not turn off its background processes. It will still consume resources and can send notifications.
Method 5: Complete removal with root rights (for experienced)
If you have root rights, you can completely uninstall any application, including system ones.
- ๐ฆ Root Explorer (manually delete files from the site) /system/app)
- ๐๏ธ Titanium Backup (delete with backup)
- ๐ช System App Remover (specialized utility)
Step-by-step instructions for System App Remover:
- Install the application and provide root access.
- In the list, check the boxes for unnecessary programs.
- Press Uninstall.
- Reset the device.
Removing root-righted system applications can cause permanent firmware damage. Always back up the /system partition before making changes.
๐ก
Even with root rights, donโt delete apps with packet names that contain miui, android, or google unless youโre sure theyโre there.
How to return a disabled or deleted application
If you encounter problems after disabling or deleting, the application can be restored.
For applications disabled:
- Go to Settings โ Applications โ Application Management.
- Press three points (โฎ) top-right.
- Select Show all Apps.
- Find the disabled application and click Enable.
For those remote via ADB:
- Connect your smartphone to your PC.
- Follow the command:
adb shell cmd package install-existing com.xiaomi.name.packetFor those with root rights:
- Restore your backup via Titanium Backup.
- Or reflash the device via Fastboot or Recovery.