How to remove unwanted apps on Xiaomi: 5 working ways (including system)

Xiaomi, Redmi and POCO smartphones come with a pre-installed set of apps, many of which users never run. Mi Browser, Mi Music, GetApps, Mi Pay and other services take up space in memory, consume battery power in the background and can collect data. Unfortunately, standard deletion through the Apps menu is often not available - the Delete button is simply missing or inactive.

The problem is complicated by the fact that MIUI Actively protects system components. Even after manual removal, some applications recover after a firmware update. In this article, we will discuss all possible ways to remove, including hidden settings, ADB-Special attention will be paid to security โ€“ incorrect actions can lead to the inoperability of Google services or complete flashing of the device.

It is important to understand the difference between the types of applications:

  • ๐Ÿ“ฑ Standard applications (e.g. Camera, Gallery) โ€“ their removal may disrupt the system.
  • ๐ŸŒ Google services (e.g. Duo, Play Movies) โ€“ can be deleted, but this will affect the functionality of the account.
  • ๐Ÿ”ง Xiaomi system utilities (for example, Security, Cleaner) - removal is fraught with errors in the work MIUI.
  • ๐ŸŽฏ Advertising and affiliate applications (e.g. Mi Credit, Mi Game Center) are the safest to remove.
๐Ÿ“Š What Xiaomi apps you want to remove first?
Advertising services (Mi Credit, GetApps)
Google Services (Duo, Play Movies)
The Standards (Mi Music, Mi Browser)
System Utilities (Cleaner, Security)
Nothing, I need everything.

1. Standard removal through settings (for conventional applications)

Letโ€™s start with the simplest method that works for apps installed by the user and some preinstalled (e.g. Facebook or Netflix if added by the manufacturer as โ€œrecommendedโ€).

Instructions:

  1. Open Settings โ†’ Applications โ†’ Application Management.
  2. Find the right app (e.g. Mi Browser) in the list.
  3. Click on it and select "Delete" or "Disable" (if the delete button is inactive).

โš ๏ธ

Note: If the "Delete" button is missing, it means that the application is system, and if you try to remove it in the standard way, you will get a message "Delete is impossible."

For some models (e.g. Redmi Note 10 Pro or POCO X3 Pro), MIUI 13/14 has the option โ€œRemove preinstalled appsโ€ in the Settings โ†’ About Phone โ†’ MIUI version (tap multiple times on the firmware version).

Make a backup copy of important data

Check out the MIUI version (Settings โ†’ About the phone)

Turn off automatic application updates (Play Market โ†’ Settings)

Charge your phone at least 50%

-->

2. disable applications without deletion (safe method)

If removal is impossible or risky, you can disable unnecessary applications, stop them from working, hide them from the menu and prevent background activity, and this method is suitable for system utilities that can not be removed without consequences (for example, Mi Security or Cleaner).

How to turn it off:

  • ๐Ÿ”ง Go to Settings. โ†’ Annexes โ†’ Application management.
  • ๐Ÿ“ฑ Select an app (such as Mi Video).
  • ๐Ÿšซ Press "Disable" (if the button is inactive, first click "Stop").
  • โš ๏ธ Confirm the action in the dialog window.

Applications disabled:

  • โœ… They won't be on the menu.
  • โœ… They will not consume resources.
  • โŒ No updates will be made through the Play Market.
  • โŒ Can be restored after resetting settings.

โš ๏ธ

Caution: Disabling system services (e.g. Google Play Services) will result in a Google account being disabled, push notifications being missing, and errors in other applications.

๐Ÿ’ก

To return a disabled application, go to Settings โ†’ Apps โ†’ Show all apps (three dots at the top) and select Show Disabled.

3. Removal via ADB (no root rights)

The Android Debug Bridge (ADB) method allows you to remove system applications without obtaining root rights. It is an official tool from Google, but requires connecting the phone to a computer.

What you need:

  • ๐Ÿ’ป Computer with Windows, macOS or Linux.
  • ๐Ÿ”Œ USB-cable (preferably original).
  • ๐Ÿ“ฆ Installed Xiaomi drivers and package ADB Tools.
  • ๐Ÿ”ง Included debugging by USB phone-on.

Step-by-step:

  1. Turn on Developer Mode: Go to Settings โ†’ About Phone. Tap 7 times on MIUI Version. Go back to Settings โ†’ Additional โ†’ For Developers. Activate USB Debugging.

"File transfer"

cmd

Windows

Terminal

macOS/Linux

adb devices

The name of your device should appear.

adb shell pm uninstall -k --user 0 title.packet

For example, to remove the Mi Browser:

adb shell pm uninstall -k --user 0 com.android.browser

๐Ÿ“Œ List of popular removal packages:

AnnexPacket nameSecurity of removal
Mi Browsercom.android.browserโœ… Safe.
Mi Musiccom.miui.playerโœ… Safe.
GetApps (Mi App Store)com.xiaomi.mipicksโœ… Safe.
Mi Creditcom.miui.creditโœ… Safe.
Google Duocom.google.android.apps.tachyonโš ๏ธ Could affect calls.

โš ๏ธ

Note: Deleting the application via ADB does not erase the application completely โ€“ it remains in the system partition, but becomes inaccessible to the current user.

How to find the name of the package of unknown applications?
1. Install the App Inspector app on your phone (available in Play Market). 2. Run it and find the app in the list. 3. Copy the value of the "Package Name" field. 4. Use this name in the command adb shell pm uninstall.

4. Removal by Root Rights (for power users)

If your Xiaomi has customized recaps installed (like TWRP) and obtained root rights (via Magisk), you can remove system applications directly from the file system, which provides complete deletion without recovery, but requires caution.

Instructions:

  • ๐Ÿ“ฑ Install a file manager with root rights support (such as Root Explorer or Solid Explorer).
  • ๐Ÿ” Go to the folder. /system/app or /system/priv-app.
  • ๐Ÿ—‘๏ธ Find a folder with the name of the application (for example, Browser for Mi Browser).
  • ๐Ÿšฎ Delete the folder or rename it (for example, add.bak to the beginning of the name).
  • ๐Ÿ”„ Reset the device.

โš ๏ธ

Note: Deleting critical system files (e.g. com.android.settings) will result in a bootloop. Before deleting, back up /system partition via TWRP!

Advantages of the method:

  • โœ… Complete removal without traces.
  • โœ… Applications will not recover after the update (unless you flash the system again).

Disadvantages:

  • โŒ Risk of damaging the system.
  • โŒ Requires unlocking the bootloader and installation TWRP (drop-off).

๐Ÿ’ก

Root-right removal is the most radical method, and only use it if you are confident in your actions and ready for possible flashing of the device.

5. Use of specialized utilities (for MIUI)

There are applications that automate the process of removing system software on Xiaomi. They work through ADB or root rights, but offer a more user-friendly interface.

Popular utilities:

  • ๐Ÿ› ๏ธ MIUI Hidden Settings โ€“ reveals hidden settings MIUI, including the ability to disable system applications.
  • ๐Ÿงน Debloater Tool (for PC) โ€“ works through ADB, Supports batch removal.
  • ๐Ÿ” App Inspector + Titanium Backup (requires root) โ€“ allows you to freeze or delete any packets.

Examples of MIUI Hidden Settings:

  1. Download APK from the 4PDA or XDA Developers forum.
  2. Install and open the application.
  3. Go to the "Application Management" section.
  4. Select unnecessary programs and click "Disable" or "Delete".

โš ๏ธ

Note: Third-party utilities may contain malicious code, and download them only from trusted sources (e.g., official XDA or 4PDA themes).

6.What to do if applications return after the update?

One of the most common problems is recovering remote applications after a MIUI update, which is because the firmware contains a full set of system packages that are overwritten when you update.

How to prevent return:

  • ๐Ÿ”„ Turn off automatic updates MIUI: Go to Settings. โ†’ The phone. โ†’ Update system. Click on the three dots at the top and select "Settings." Turn off "Automatic Boot".
  • ๐Ÿ“ฆ Use Magisk modules: Install Universal Debloater or MIUI Debloater via Magisk, these modules block the recovery of deleted packets.
  • ๐Ÿ›ก๏ธ Create a backup: After removing applications, make a backup through TWRP Or OrangeFox. If necessary, restore the system from the backup after the update.

If the applications have already returned, repeat their removal through ADB or root rights. For MIUI 14, some users recommend rolling back on MIUI 13 and using older versions of debloater scripts, as new firmware strengthens the protection of system files.

7. Risks and consequences of removing system applications

Removing unnecessary software can improve performance and free up space, but it also carries risks.

๐Ÿ”ด Disruption of Google services:

  • Deleting com.google.android.gms (Google Play Services) will result in push notifications being stopped, Play Market errors and inability to use Gmail, Maps and other services.
  • Deleting com.google.android.gsf will disrupt Google Play Protect.

๐Ÿ”ด Mistakes in MIUI:

  • Removing com.miui.securitycenter (Security) may result in loss of security features (virus scanner, application permissions).
  • Deleting com.miui.cleanmaster (Cleaner) will disrupt the memory optimizer.

๐Ÿ”ด Problems with updates:

  • After you delete the system packages, MIUI Updater may issue an error "Can't check the update".
  • In some cases, the phone stops booting if critical files are deleted.

โš ๏ธ

Warning: If the phone stopped turning on or got stuck on the MI logo after deleting the apps, try: Load to Fastboot (press Power + Volume Down). Refuse the device via Mi Flash Tool (loss of data!). Restore the backup via TWRP (if installed).

FAQ: Frequent questions about removing apps on Xiaomi

โ“ Can I remove Mi Browser without any consequences?
Yes, Mi Browser (com.android.browser) can be safely deleted via ADB or root rights.It doesn't affect how the system works, but some links from MIUI (e.g. in settings) can open in the default default browser (e.g. Chrome).
โ“ Why does it appear again after removing GetApps?
GetApps (com.xiaomi.mipicks) is restored because it is part of MIUI and is updated with the firmware. To prevent return: Turn off the automatic MIUI update. Use the Magisk module to block its installation. Remove it after each update.
โ“ How to remove Google Duo if it is not in the list of applications?
Google Duo (com.google.android.apps.tachyon) is a system application and can be hidden in the menu.To remove it: Connect your phone to your PC and use ADB-Command: adb shell pm uninstall -k --user 0 com.google.android.apps.tachyon If the command doesnโ€™t work, try first disabling the app through the settings and then uninstall it. โš ๏ธ Duo Deletion Could Affect Video Calls on Other Google Services.
โ“ Can I remove Mi Security (Security)?
Remove Mi Security (com.miui.securitycenter) is not recommended. This application is responsible for: Managing permissions for other applications, virus scanner and malware protection, privacy functions (for example, blocking access to the camera / microphone), instead of removing you can disable individual functions in its settings.
โ“ How to return a remote system application?
If you have removed the system application and want to return it, there are several ways to do so: ๐Ÿ”„ Resetting (returns all standard applications but deletes user data). ๐Ÿ“ฆ Fastboot Flashback (Full System Restore). ๐Ÿ› ๏ธ Installation APK manually (if the application is not system-based, but simply pre-installed). ๐Ÿ”ง Recovery through TWRP (if there's a backup section /system).