Xiaomiβs MIUI-based smartphones are known for their abundance of pre-installed apps, from Mi Browser and Mi Video to affiliate software like Facebook or Netflix. Many users want to get rid of this junk to free up memory, speed up the system or simply clear the menu of unnecessary icons. However, removing system applications is not an easy task: wrong actions can lead to malfunctions in the phone.
In this article, weβll look at all the current ways to remove native apps on Xiaomi, Redmi and POCO, from securely disabling through settings to radical methods using ADB and superuser rights. Youβll learn which programs can be removed without risk and which ones are strongly discouraged. Weβll also tell you how to return a remote application if something went wrong.
Why you canβt just remove system apps from the menu
Unlike custom software that is installed from Google Play, native MIUI applications are protected from accidental removal, and this is done for a reason: many of them are responsible for key functions of the system.
- π§ Mi Security β manages application resolution and virus scanning.
- π± System Launcher β Responsible for the desktop and application menu.
- π MIUI Daemon β background process that ensures notifications and updates work.
If you remove such an application without preparation, the phone can:
- β οΈ Stop loading (bootloop).
- π³ Errors when you start your camera, phone, or internet.
- π Losing productivity due to work failures MIUI.
So before any manipulation of system files, be sure to back up via Settings β About Phone β Backup or third-party tools like Titanium Backup (requires root).
Method 1: Disabling system applications without removing
The safest method is not to delete, but to disable unnecessary programs, which hides them from the menu, stops background activity and frees up RAM, but does not affect system files, suitable for most users who do not want to risk the stability of the phone.
How to disable the application:
- Open Settings β Applications β Application Management.
- Select a program from the list (for example, Mi Browser or Mi Music).
- Click Disable (the button will appear if the application can be deactivated).
- Confirm the action in the dialog window.
Applications disabled:
- π΄ They won't be on the menu.
- π« They wonβt be able to start automatically.
- π You can turn it back on at any time through the same settings.
βοΈ Preparation for application deactivation
What applications can be turned off without risk:
| Annex | Can I turn it off? | Effects of consequences |
|---|---|---|
| Mi Browser | β Yes. | It will not open by default for links |
| Mi Video | β Yes. | Video files will be opened through another application |
| Facebook App Manager | β Yes. | Facebook integration will stop working |
| Mi Pay | β Yes. | Xiaomiβs contactless payment will not work |
| System Launcher | β No. | The phone will stop loading. |
β οΈ Warning: Do not disable applications called com.android., com.miui. or com.xiaomi. in the batch name (as seen in the app settings). MIUI He can't work properly.
Method 2: Removal via ADB (without root rights)
If you don't shut down enough, you can uninstall apps using Android Debug Bridge (ADB), a tool for debugging Android devices, which doesn't require superuser rights, but it's still risky: the wrong command can disrupt the system.
What you need:
- π₯οΈ Computer with Windows, macOS or Linux.
- π± Cable USB (preferably original).
- π§ Installed drivers Xiaomi and ADB.
- π Included debugging by USB phone-on.
Step-by-step:
- Turn on USB Debugging in Settings β About Phone β MIUI version (click 7 times to unlock the developer menu), then go back to Settings β Additional β For Developers.
- Connect your phone to your computer and confirm your trust in the device.
- Open the command prompt (or Terminal on macOS/Linux) and type:
adb devicesIf the phone is on the list, go ahead. If not, check the drivers and the cable.
- Get a list of all packages installed:
adb shell pm list packages- Find the name of the package of the unwanted application (for example, com.android.browser for Mi Browser).
- Remove it by command:
adb shell pm uninstall -k --user 0 name packetExample of Mi Browser removal:
adb shell pm uninstall -k --user 0 com.android.browserπ‘
Before you delete, check if the app is a dependency for other features, for example, deleting Mi Account can disrupt cloud backup.
Advantages of the method:
- π Doesn't require root rights.
- π The application can be restored via adb shell cmd package install-existing name packet.
- π‘οΈ Less risk than getting root.
β οΈ Note: Some applications (e.g. Mi Security) after deleting via ADB Can be restored after the update MIUI. To avoid this, disable automatic system updates in settings.
Method 3: Remove with MIUI Optimizer (requires unlocking the bootloader)
For users willing to take more drastic measures, there is a tool called MIUI Optimizer (formerly MIUI Hidden Settings), which allows you to uninstall system programs, configure hidden MIUI settings, and even modify animations, but it requires an unlocked bootloader and, in some cases, root to work.
How to use MIUI Optimizer:
- Unlock the bootloader on the official Xiaomi website (the process takes up to 7 days).
- Install MIUI Optimizer from the developerβs Telegram channel (official source).
- Open the app and go to the App Manager section.
- Select the unnecessary app and click Uninstall.
- Confirm the deletion and restart the phone.
What can be removed through MIUI Optimizer:
- π΅ Mi Music, Mi Video - Multimedia Players.
- π Mi Browser, Quick Apps β browser and mini-applications.
- π¦ Cleaner, Security β Optimizers (if you use alternatives).
What can't be removed:
- π« MiuiSystemUI β Responsible for the interface.
- π« MiuiHome - launcher (desktop).
- π« TeleService β Telephone functions.
What happens if you delete MiuiSystemUI?
After removing applications through MIUI Optimizer, it is recommended that:
- π Reboot the phone.
- π Check the free space in the settings β Warehouse.
- π οΈ Install alternative programs (e.g. Google Chrome instead of Mi Browser).
Method 4: Complete removal with root rights
If you're willing to take the maximum risk for the sake of total control of your phone, you can get root rights and manually remove system applications, which gives you the greatest freedom, but also the greatest responsibility: a mistake can turn a phone into a brick.
What you need to get root:
- π Unlocked loader.
- π± Established custom recaveri (e.g, TWRP).
- π οΈ Magisk-enabled firmware (e.g. LineageOS or modified) MIUI).
How to remove the application from root:
- Install Root Explorer or Solid Explorer with root support.
- Go to /system/app or /system/priv-app.
- Find a folder with the name of the unwanted app (e.g. Browser for Mi Browser).
- Delete the folder or rename it (add at the end of.bak).
- Reboot the phone.
Advantages of root method:
- π§Ή Complete removal without traces.
- π§ Ability to edit system files.
- π Speeding up your phone by removing unnecessary processes.
Risks:
- β οΈ Loss of guarantee.
- π΄ Possibility of "bricking" the phone.
- π Security issues (some banking apps donβt work on rooted devices).
π‘
Before getting root, be sure to check the forums (such as XDA Developers or 4PDA) for your Xiaomi model.Some devices (such as the Redmi Note 10 Pro) have modification protection, and improper actions can lock the bootloader permanently.
How to return a remote application if the phone stops working
If the phone starts to glittle or doesn't turn on after you delete the system app, don't panic. In most cases, the situation can be fixed.
Recovery methods:
- Through ADB (if the phone is turned on): adb shell cmd package install-existing name packet For example, to recover Mi Browser: adb shell cmd package install-existing com.android.browser
- Through MIUI Optimizer: If the application has been removed through this tool, try finding it in the Recycle Bin section and recovering it.
- Firmware: If the phone doesn't turn on, you'll have to reflash it on Fastboot or Recovery.
- π₯ Download the official firmware for your model from the Xiaomi website.
- π₯οΈ Use the Mi Flash Tool to Fastboot Firmware.
- π Select Clean All or Clean All and Lock (if you want to lock the bootloader back).
If the phone is stuck on the MIUI logo:
- π Hold the Power. + Volume Up for 10 seconds to reboot in Recovery.
- ποΈ Select Wipe Data (Resetting Settings).
- π Reboot the phone.
β οΈ Note: If you have deleted critical system files (e.g, framework-res.apk), recovery ADB or MIUI Optimizer may not help, but in this case, the only way out is to completely reflash through Fastboot, which will erase all the data on the phone.
What Xiaomi Apps Can Be Uninstalled Without Risk (List for Popular Models)
Below is a list of apps that you can uninstall on most Xiaomi, Redmi, and POCO devices (relevant to MIUI 14 and later), but before deleting, check if you are using features that depend on these programs.
| Title of the annex | Package name | Can I remove it? | What is responsible for? |
|---|---|---|---|
| Mi Browser | com.android.browser | β Yes. | Standard browser |
| Mi Video | com.miui.videoplayer | β Yes. | Video player |
| Mi Music | com.miui.player | β Yes. | Music player |
| Mi Pay | com.miui.mipay | β Yes. | Contactless payment system |
| Facebook App Manager | com.facebook.appmanager | β Yes. | Facebook's background processes |
| Quick Apps | com.miui.hybrid | β Yes. | Mini-applications on the desktop |
| Cleaner | com.miui.cleanmaster | β οΈ Conditionally. | Memory Optimizer (may interfere with other cleaning workers) |
| Mi Drop | com.xiaomi.midrop | β Yes. | File transfer over Wi-Fi |
Applications that cannot be removed (critical for the system):
- π« com.miui.home β launcher (desktop).
- π« com.android.settings β System settings.
- π« com.miui.securitycenter β Security Center.
- π« com.android.phone β telephone functions.
- π« com.miui.system β System processes MIUI.
On devices with a MediaTek processor (e.g. Redmi 9A, POCO M3), removing some system applications can lead to loss of IMEI and network problems.