How to Disable or Remove System Apps on Android Xiaomi: The Complete Guide

Xiaomi smartphones come with dozens of pre-installed apps, from useful MIUI services to advertising modules and duplicating tools. Many of them can’t be removed by standard methods, but they can be disabled or removed forcibly, freeing up memory and reducing background activity. However, improper actions can lead to system failures, so it’s important to understand the differences between methods and their consequences.

In this article, we’ll look at all the current ways to work with system applications on Xiaomi, Redmi and POCO in 2026 – from securely disabling through settings to deep removal with ADB and root rights. You’ll learn which applications can be removed without risk and which should not be touched, and how to restore the system if something goes wrong.

Why System Applications Are Interfering with Users

Xiaomi’s pre-installed software has two key functions: it powers the MIUI shell and monetizes the device through advertising and partner services, but for most users, it creates more problems than benefits:

  • πŸ“± Busy memory: system applications take 3 to 8 GB depending on the model (for example, on Xiaomi 13 Pro it is a model of the same size). ~5.2 GB, and on the Redmi Note 12 – up to 4 GB).
  • πŸ”‹ Background activity: services like mipush, miui.analytics or com.xiaomi.midrop are constantly running in the background, consuming battery power.
  • πŸ“’ Advertising and spam: applications such as com.miui.hybrid or com.xiaomi.mi_connect_service Advertising is shown even in the system menu.
  • πŸ”„ Duplicate functionality: Xiaomi installs its browsers, galleries and music players on top of standard Android analogues.

According to a study by XDA Developers (2023), disabling unnecessary system services can increase battery life by 12-18% and free up to 1.5 GB of RAM. But not all applications are safe to remove β€” some are critical to the stability of MIUI.

πŸ“Š Have you ever tried to remove system apps on Xiaomi?
Yes, through ADB.
Yeah, with root rights.
I tried to turn off the settings.
No, I'm afraid to break my phone.
I didn't know it was possible.

Which system applications can be removed and which can not

Before you turn something off, you need to clearly understand what each application is responsible for, and below is a table that divides it into safe to remove, conditionally safe (you can turn off, but not delete) and critical (you can not touch).

CategoryPacket name (APK)What's he doing?Risk of removal
Safe to removecom.miui.analyticsCollecting usage analyticsLow (the statistics may disappear in the Security)
Safe to removecom.xiaomi.midropFile sharing over Wi-Fi (Mi Drop)Low (there are alternatives)
Conditionally secure.com.miui.hybridHybrid Web Viewer (responsible for mini-applications)Medium (the widgets may break)
Criticalcom.android.systemuiSystem interface (notification panels, navigation)High (phone won't boot)
Criticalcom.miui.homeMIUI launcher (desktop)High (the screen will remain black)

Unique information for Xiaomi: On HyperOS devices (such as Xiaomi 14 or Redmi K70), some of the system packages have been renamed. For example, com.miui.securitycenter can now be called com.miui.hyperos.security. Always check the current package name through ADB or App Inspector before deleting.

⚠️ Note: Deleting applications like com.qualcomm.qti.telephonyservice or com.android.phone will result in network loss and loss of the service. SMS. They can be restored only through a complete reset or reflashing.

Method 1: Disabling system applications without root rights

The safest method is to disable the application through standard settings, which doesn't remove the application completely, but it stops it from working and hides it from the menu, and is suitable for most users, because it doesn't require technical skills.

Instructions:

  1. Open Settings β†’ Applications β†’ Application Management.
  2. Click on the three dots in the upper right corner and select "Show all apps."
  3. Find the right app (such as Mi Video or Mi Browser).
  4. Click "Disable" and confirm the action.

Applications disabled:

  • βœ… Not updated through the Play Market.
  • βœ… They do not consume battery and traffic.
  • ❌ Remain in the memory of the device (do not vacate the space).
  • ❌ You can accidentally turn back on through resetting settings.

β˜‘οΈ Preparation for application deactivation

Done: 0 / 4

On some models (POCO F5, Redmi Note 12 Pro+) the shutdown option may be hidden, in which case ADB will help (see next section).

Method 2: Remove system applications via ADB (without root)

ADB (Android Debug Bridge) is Google’s official debugging tool that allows you to remove system applications without rooting permissions.The method works on all Xiaomi with an unlocked bootloader, but requires a connection to a PC.

Step-by-step:

  1. Download Google’s Platform Tools and unpack the archive.
  2. Turn on the phone Developer Mode (7 times click on the MIUI version in Settings β†’ About phone).
  3. Activate Debugging by USB in Settings β†’ Additional β†’ For developers.
  4. Connect your phone to your PC and type in the command line: adb devices (the name of your device should appear).
  5. To remove the application, use the command: adb shell pm uninstall -k --user 0 name packet For example, to delete Mi Browser: adb shell pm uninstall -k --user 0 com.android.browser

Advantages of the method:

  • πŸ”§ Doesn't require root rights.
  • πŸ“‰ Frees up space in memory (as opposed to disconnecting).
  • πŸ”„ Application can be restored by the command: adb shell cmd package install-existing name packet

⚠️ Note: On Xiaomi with HyperOS, the pm uninstall command may not work for some packages due to the changed permission structure. --user 0 Or use adb shell pm disable-user.

πŸ’‘

Before mass deletion, take a screenshot of the packet list with the adb shell pm list packages | grep 'miui' command to help restore remote applications if something goes wrong.

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

If you have a bootloader unlocked and you have Magisk or another root manager installed, you can remove system applications directly from the /system/priv-app or /system/app folder.

Instructions:

  1. Install a file manager with root support (such as Root Explorer or Mixplorer).
  2. Go to /system/priv-app or /system/app.
  3. Find a folder with the name of the application being removed (for example, MiBrowser).
  4. Rename the folder by adding.bak at the end (e.g. MiBrowser.bak).
  5. Reset the device.

Alternatively, Titanium Backup or System App Remover (requires root) are programs that allow you to create backups before you delete them.

Risks:

  • πŸ’₯ Bootloop (Cycle Loading) when removing critical packets.
  • πŸ“΅ Loss of functionality (e.g., deleting com.qualcomm.telephony will disable the mobile network).
  • πŸ”’ Security breach (some system applications are responsible for encryption).
How to exit the bootloop after a failed removal?
If the phone is stuck on the Xiaomi logo, try: 1. Go to Fastboot (press Power + Volume down). 2. Connect to your PC and restore the remote package via fastboot flash or adb sideload. 3. If it doesn’t help, flash the device through Mi Flash Tool (loss of data!).

How to Restore Remote System Applications

If after removal there are problems, you can restore applications in several ways:

  1. Through ADB: adb shell cmd package install-existing For example, for Mi Gallery: adb shell cmd package install-existing com.miui.gallery
  2. Through Root: Rename the folder back (remove.bak).
  3. Through firmware: Download the full firmware package for your model with Xiaomi Firmware Updater and run only the system partition (system.img) through Fastboot.

If nothing helps, you can either reset completely (Settings β†’ About Phone β†’ Reset) or flash through the Mi Flash Tool.

πŸ’‘

Always back up /system before mass removal of applications. Use the command adb backup -apk -shared -all -f backup.ab or the TWRP application (if installed).

Removal Alternatives: How to Hide or Replace System Applications

If the risks of removal are frightening, consider alternative methods:

  • πŸ” Hiding icons: Use launchers like Nova Launcher or Lawnchair, which let you hide system apps from the menu.
  • πŸ”„ Default Replacement: Assign other apps for default actions (e.g. Google Chrome instead of Mi Browser).
  • πŸ›‘οΈ Network Blocking: Turn off the internet for unnecessary apps via Settings β†’ Annexes β†’ Use of data.
  • βš™οΈ Disabling Autostart: In Security β†’ Autorun Prohibit Background Work for System Services.

For Xiaomi HyperOS models (2026), there is another trick: you can turn off advertising and analytics through a hidden menu.

  1. Open the phone app (phone).
  2. Enter the code: ##4636###.
  3. Go to Usage statistics and turn off all switches associated with miui.

FAQ: Frequent questions about working with system applications

Can I remove Google Play Services from Xiaomi?
No, it will lead to the collapse of most applications, including Play Market and Google services. Maximum - you can disable auto-update in Settings β†’ Apps β†’ Google Play Services β†’ Notifications.
Why did Mi Video files stop working after being deleted?
The com.miui.videoplayer app is responsible for playing some formats (e.g..mkv).Install an alternative player, such as VLC or MX Player.
How do I know which app is responsible for advertising in MIUI?
Main sources of advertising: com.miui.hybrid (mini-applications) com.xiaomi.mipicks (advertising in Security) com.miui.systemAdSolution (banners in settings) Disable or remove them through ADB.
Will it work? OTA-Update after removing system applications?
MIUI checks the integrity of system files before updating, if packets are missing, the update will end in an error, before updating, restore all remote applications.
Can I remove com.miui.securitycenter?
No, it's the MIUI security core, and if you delete it, you lose access to Settings, Screen Lock, and Fingerprint, and at the most, you disable unnecessary features in the app itself.