How to permanently disable or remove unwanted apps on Xiaomi: 5 proven ways

Why are there so many unnecessary apps on Xiaomi and can they be safely removed?

Xiaomiโ€™s MIUI-based smartphones are famous for their functionality, but often annoy users with the abundance of pre-installed software. Branded services like Mi Browser, Mi Video, GetApps or Mi Pay take up memory, consume battery power in the background and even collect data โ€” despite the fact that 90% of owners do not use them. According to a study by Counterpoint Research (2023), on new Xiaomi devices, up to 20% of internal memory is immediately occupied with system applications that cannot be removed by standard methods.

In this article, weโ€™ll look at all the possible methods, from simple deactivation through settings to deep cleaning with ADB and root rights. Youโ€™ll learn which applications can be removed without risk to the system and which cannot be touched categorically. Weโ€™ll also analyze the consequences of each method, from loss of functionality to a possible โ€œbrickโ€ of the device, if you are tired of intrusive Mi Community notifications or unnecessary duplication of services (for example, two browsers: Chrome + Mi Browser), this guide will help you regain control of your smartphone.

โš ๏ธ Important: Not all methods are equally safe. APK without backup can cause a cyclical reboot of the device or loss of access to functions such as NFC, We'll flag the risky moves with special warnings.

Method 1: Standard deactivation via MIUI settings

The easiest and safest method is to disable applications without completely removing them, which will not free up memory, but will stop background activity, notifications and updates, and is suitable for most Xiaomi brand services, except for mission-critical ones (such as MiuiDaemon or SecurityCenter).

Instructions:

  • ๐Ÿ“ฑ Open the Settings. โ†’ Annexes โ†’ Application management.
  • ๐Ÿ” In the search box, type the name of the unwanted app (for example, Mi Music or Mi Credit).
  • โš™๏ธ Click on the app. โ†’ Disable (button will appear if the software can be deactivated).
  • โœ… Confirm the action in the dialog window.

Once disabled, the app icon will disappear from the desktop, but the APK file will remain in the system. To return it, just go to Settings โ†’ Applications โ†’ Disabled and click Enable.

Unused Media Players (Mi Music, Mi Video)|Duplicate browsers (Mi Browser)|Financial services (Mi Credit, Mi Pay)|Social Applications (Mi Community)|Game Center (Game Center)-->

โš ๏ธ Warning: Do not disable Services & Feedback โ€“ this may disrupt updates MIUI. Also, avoid deactivating Google Play Services, otherwise many applications that depend on Google services will stop working.

Method 2: Remove through Developer Mode (without root rights)

If standard deactivation doesnโ€™t work, you can try uninstalling apps through the developer menu, which works on all Xiaomi devices with MIUI 12 and later, but requires developer mode activation.

Steps:

  1. Activate Developer Mode: Go to Settings โ†’ About Phone and click on MIUI Version 7 times.
  2. Back to Settings โ†’ Additionally. โ†’ For developers.
  3. Find the option to Remove system applications (on some firmware it is hidden โ€“ see spoiler below).
  4. Select the unnecessary app from the list and confirm the removal.
If there is no option "Remove system applications"
On some versions MIUI (for example, 13.0.6) This function is hidden. To unlock it, run the command through ADB: adb shell settings put global hidden_api_policy 1 After restarting the device, the option will appear in the developer menu.

List of apps that can be removed this way (checked on Redmi Note 11 and Poco X5 Pro):

Title of the annexPackage (APK)Risk of removal
Mi Browsercom.android.browserLow.
Mi Videocom.miui.videoplayerLow.
Mi Musiccom.miui.playerLow.
GetApps (Mi App Store)com.xiaomi.mipicksMedium (may disrupt updates)
Mi Communitycom.xiaomi.forumLow.

โš ๏ธ Warning: Deleting com.xiaomi.mipicks (GetApps) may cause bugs when checking for updates MIUI In this case, update the firmware manually through Recovery.

Mi Browser|Mi Video|GetApps (Mi App Store)|Mi Community|Others-->

Method 3: Remove via ADB (without root rights but with PC)

For advanced users ready to connect a smartphone to a computer, there is a method of removing via Android Debug Bridge (ADB). It allows you to get rid of applications that can not be deactivated or deleted through settings. USB-Debugging and Minimal Command Line Knowledge.

Step-by-step:

  1. Download ADB Tools for Windows/macOS/Linux.
  2. Turn it on. USB-Debugging on a smartphone: Settings โ†’ Additionally. โ†’ For developers โ†’ Debugging by USB.
  3. Connect your phone to your PC and confirm your trust in your computer.
  4. Open the command prompt (or Terminal) in the adb.exe folder and do:
adb devices

(Your device should be displayed.)

adb shell pm list packages | grep 'xiaomi'

(Show all Xiaomi packages. Copy the name of the unnecessary, for example com.miui.weather2.)

adb shell pm uninstall -k --user 0 com.miui.weather2

Key key --user 0 This means that the application is only deleted for the current user (without affecting system files), which is safer than complete removal, since it allows you to restore the software through resetting settings.

adb shell pm list packages > packages_backup.txt

This file will help you recover remote applications if something goes wrong.-->

Examples of safe packet removal:

  • ๐ŸŒ com.android.browser โ€” Mi Browser
  • ๐ŸŽต com.miui.player โ€” Mi Music
  • ๐Ÿ“บ com.miui.videoplayer โ€” Mi Video
  • ๐Ÿ’ฐ com.xiaomi.payment โ€” Mi Pay
  • ๐ŸŽฎ com.xiaomi.gamecenter.sdk.service โ€” Game Center
adb shell cmd package install-existing com.miui.videoplayer

Method 4: Complete removal with root rights (for experienced)

If you are willing to take the risk of root access, you can uninstall any system applications, including those that block MIUI. This method requires unlocking the bootloader (Bootloader Unlock) and installing a custom recavator (for example, TWRP), which cancels the warranty and can lead to a โ€œbrickโ€ if you make an error.

Instructions:

  1. Unlock the bootloader through the official Xiaomi tool (requires a Mi Account and wait 7-30 days).
  2. Install TWRP Recovery for your model (see instructions on XDA Developers).
  3. Squeeze Magisk to obtain root rights.
  4. Use a root-enabled file manager (such as Root Explorer) and delete APK-file: /system/app โ€” standard; /system/priv-app โ€” privileged system services.

โš ๏ธ Note: Removing files from /system Without a backup, it can render the device inoperable, for example, deleting com.android.phone will cause the network connection to be lost, and com.miui.home will cause the launcher to be unloaded.

List of prohibited packets (even with root rights):

  • ๐Ÿšจ com.android.settings - Settings;
  • ๐Ÿšจ com.miui.home - Launcher MIUI;
  • ๐Ÿšจ com.android.phone - Phone calls;
  • ๐Ÿšจ com.miui.securitycenter - Security Center;
  • ๐Ÿšจ com.google.android.gsf โ€“ Google Services.

Method 5: Hiding applications without deleting (alternative)

If you don't want to risk system stability, but you want to get rid of badges of unnecessary applications, you can just hide them. It won't free up memory, but it will clear the desktop and the app menu.

How to hide it:

  1. Hold your finger on the app icon on your desktop.
  2. In the menu that appears, select Remove (on some firmware - Hide).
  3. Confirm the action. The app will disappear from the menu, but it will remain in the system.

For mass concealment, use launchers from third-party developers, for example:

  • ๐Ÿ“ฑ Nova Launcher (allows you to hide apps in your settings);
  • ๐Ÿ“ฑ Lawnchair (open source);
  • ๐Ÿ“ฑ Microsoft Launcher (Integration with Windows).

โš ๏ธ Attention: Hidden applications continue to work in the background and receive updates. To completely stop their activity, combine this method with deactivation through settings (Method 1).

What happens if you delete the โ€œwrongโ€ app?

Not all Xiaomi system applications are safe to remove, some of which are critical to MIUI operation, and their removal can cause serious failures. Below is a table of consequences of removing key packages:

Remote package.Effects of consequencesCan we restore it?
com.miui.homeBlack screen after booting, no launcherYes (via ADB or flashing)
com.android.phoneThere is no network, no phone calls.Yes (only through firmware)
com.miui.securitycenterNot working permissions, antivirus, memory cleaningYes (via ADB)
com.google.android.gsfGoogle services (Play Market, Gmail, etc.) are not working.Yes (only through firmware)
com.xiaomi.finddeviceThe "Find the Device" function is not working.Yes (via ADB)

If after removing the application, the smartphone stopped working normally, try:

  1. Restore the package through ADB (key-wise --user 0):
adb shell cmd package install-existing com.miui.home
  1. Reset the settings to factory (Settings โ†’ Additional โ†’ Recovery and Reset).
  2. Reflash the device through the Mi Flash Tool (instructions on the official website).

๐Ÿ’ก

If the smartphone does not turn on after removing the system application, try to go to Recovery Mode (press Power + Volume Up) and do Wipe Data. This will reset all settings, but will keep the device working.

FAQ: Frequent questions about removing apps on Xiaomi

Can you delete Google apps (YouTube, Chrome, Gmail) without consequences?
โŒ No. Deleting standard Google apps (com.google.android.youtube, com.android.chrome, etc.) will disrupt Google Play Services, leading to errors in other programs (e.g., banking apps will stop running), which can only be deactivated or hidden.
Why does it reappear after the Mi Browser is removed via ADB after the MIUI update?
๐Ÿ”„ It's a feature. OTA-Xiaomi updates: The system automatically restores remote system applications when you install new firmware versions, so to avoid this, either disable automatic updates or remove the applications again after each update.
How do you know which app consumes the most battery?
๐Ÿ“Š Go to Settings. โ†’ Battery โ†’ Battery usage. This shows you a list of applications with percentage of consumption, and you can also use third-party utilities like AccuBattery or GSam Battery Monitor for detailed analysis.
Can I remove MIUI completely and install a pure Android?
โœ… Yes, but it requires unlocking the bootloader and installing custom firmware (like LineageOS or Pixel Experience), a complex and risky process: you lose the warranty, the camera (Xiaomi drivers are closed), and some features like the ones youโ€™ll find on the phone. IR Blaster (infrared port) For detailed guides, see the forums XDA Developers or 4PDA for your model.
How to disable advertising in Xiaomi system applications?
๐Ÿšซ Ads in Mi Browser, Security and other apps are turned off as follows: Go to Settings โ†’ Memory. โ†’ Cleaning (or Security). Press on โš™๏ธ (Turn off the Recommendations and Receive Ads. Complete removal of ads requires root or modified firmware with Mobile Services Analytics (MSA) disabled).