Smartphone Xiaomi Redmi 9 on database MIUI often comes with pre-installed applications that the user does not always need. Some of them cannot be removed using standard methods, but they can disableso that they do not consume resources and are not displayed in the menu. In this article we will analyze all the available methods - from simple to advanced, including working with ADB and hidden settings MIUI.

It is important to understand the difference between deleting and disabling. Uninstalling completely erases the application from the device, while disabling it only โ€œfreezesโ€ it, stopping background activity. On Redmi 9 s Android 10/11 i MIUI 12/13 some system applications (for example, com.miui.analyticss) cannot be deleted without rootrights, but they can be deactivated. We will also look at how to return a disabled application back and what to do if errors occur after manipulation.

Why you canโ€™t just delete all applications on Redmi 9

Smartphone manufacturers, including Xiaomi, integrated into the firmware MIUI a number of system services that are responsible for:

  • ๐Ÿ”„ Software and security updates (com.miui.updater)
  • ๐Ÿ“Š Collection of anonymous statistics (com.miui.analytics)
  • ๐Ÿ”’ Permission and security management (com.lbe.security.miui)
  • ๐ŸŽต Multimedia functions (com.miui.player)

Removing such applications can lead to unstable system operationerrors during updating or even crashing in bootloop (cyclic reboot). However shutdown most of they are safe - they will simply stop starting and consuming resources. The exception is critical services, for example com.android.phone (telephony) or com.miui.home (launcher).

๐Ÿ“Š Have you ever tried to remove a system application on Xiaomi?
Yes, but unsuccessfully
Yes, and it worked
No, I'm afraid to break the phone
I don't know what it is

On Redmi 9 there are three categories of applications:

  1. Custom - installed by you from Google Play or APK. They can be completely removed.
  2. System (deactivated) - preinstalled, but not critical for operation (for example, Mi Video or Mi Browser). They can be disabled.
  3. System (protected) - kernel MIUI and AndroidThey cannot be deleted or disabled. without root.

Method 1: Disabling through standard MIUI settings

The simplest and safest method is to use built-in tools MIUIIt is suitable for most pre-installed applications, except critical ones.

Instructions:

  1. Open Settings โ†’ Applications โ†’ Manage applications.
  2. Select the desired application from the list (for example, Mi Music or GetApps).
  3. Click Disable (the button will appear if the application can be deactivated).
  4. Confirm the action in the dialog box.

Check if the application is system-critical

Make a backup copy of important data

Make sure the battery is charged more than 30%

Close all background processes of the application-->

After disconnecting:

  • ๐Ÿ“ฑ The icon will disappear from the menu.
  • โšก The application will not start and consume resources.
  • ๐Ÿ”„ Updates for it will no longer be installed.

Method limitations:

  • โŒ Does not work for system services (for example, com.miui.securitycenter).
  • โŒ Some applications (for example, Google Play Music) can be automatically turned on after updating MIUI.
๐Ÿ’ก

If the "Disable" button is inactive, try first uninstalling all application updates (the "Uninstall updates" button in the same menu).

Method 2: Uninstalling updates and resetting to factory default version

Many pre-installed applications on Redmi 9 cannot be removed completely, but you can return them to the factory versionby deleting all updates. This will reduce their size and disable some functions.

How to do it do:

  1. Go to Settings โ†’ Applications โ†’ Manage applications.
  2. Select an application (for example, Mi Browser).
  3. Click on the three dots in the upper right corner and select Delete updates.
  4. Confirm the action.

On Redmi 9 s MIUI 12.5+ some applications (for example, com.miui.galleryafter resetting updates automatically block the ability to update again via Google Play. This allows you to permanently โ€œfreezeโ€ them in their factory state.

Application Can I disable it? Can I remove updates? Consequences of disabling it
Mi Browser โœ… Yes โœ… Yes Will not consume traffic in the background
Mi Video โœ… Yes โœ… Yes The icon will disappear, but the system player will remain
GetApps โœ… Yes โŒ No Will not show ads and notifications
Security (com.miui.securitycenter) โŒ No โŒ No Critical system component
โš ๏ธ Attention: After resetting the updates, some functions of the application may not work incorrect. For example, Mi Browser will lose support for the latest web standards.

Method 3: Using ADB to remove system applications

For advanced users, there is a method for removing applications via ADB (Android Debug Bridge). This allows you to get rid of even those apps that cannot be disabled through the settings. But be careful: incorrect commands can disrupt the system.

What you will need:

  • ๐Ÿ–ฅ๏ธ A computer with installed drivers ADB i Fastboot.
  • ๐Ÿ“ฑ Enabled USB debugging on Redmi 9 (Settings โ†’ About phone โ†’ MIUI version - press 7 times, then return to Settings โ†’ Additional โ†’ For developers โ†’ USB debugging).
  • ๐Ÿ”Œ USB cable (preferably original).

Step-by-step guide:

  1. Connect your phone to the PC and confirm permission to debug.
  2. Open the command line (cmd) and enter:
adb devices

(Serial serial number should be displayed your device number.)

  1. Get a list of all packages:
adb shell pm list packages
  1. Find the package name of the desired application in the list (for example, com.miui.analytics).
  2. Remove it with the command:
adb shell pm uninstall -k --user 0 com.miui.analytics

Key --user 0 means that the application is only removed for the current user (does not require root). The flag -k saves the cache and data, which allows you to return the application back with the command:

adb shell cmd package install-existing com.miui.analytics
โš ๏ธ Attention: Removing some packages (for example, com.google.android.gms) will lead to inoperability services Google Play. Before experiments, create a backup copy via adb backup.
List of packages safe to delete on Redmi 9

com.miui.analytics - statistics collection com.xiaomi.midrop - Mi Drop (file transfer) com.miui.bugreport - reports about errors com.miui.videoplayer โ€” Mi Video com.android.browser โ€”standard browser (if you use another)

Method 4: Using third-party utilities (without root)

If ADB it seems complicated, you can use specialized applications from Google Playthat simplify the process of disabling system apps. For example:

  • ๐Ÿ› ๏ธ App Inspector โ€”shows all installed packages and allows you to disable them.
  • โšก Package Disabler โ€”works on the same principle as ADB, but with a graphical interface.
  • ๐Ÿ” Debloater โ€”contains a database of โ€œsafe to uninstallโ€ packages for Xiaomi.

Example of working with Package Disabler:

  1. Install the utility from Google Play.
  2. Give permission for USB debugging (as in the method with ADB).
  3. Select the application from the list and press Disable.
  4. Restart the phone.

Advantages of the method:

  • โœ… Does not require command knowledge ADB.
  • โœ… Visual interface with package descriptions.
  • โœ… Possibility of mass shutdown.

Disadvantages:

  • โŒ Some utilities contain advertising.
  • โŒ Risk of disabling a critical package (always check the description!).
๐Ÿ’ก

The utility side is a good compromise between security and convenience, but before using, check the reviews and ratings on Google Play.

Method 5: Complete removal using root access

If you are ready to take radical measures, you can get rootrights and remove any applications, including system ones. On Redmi 9 this will require:

  1. Unlock the bootloader (bootloader) through the official website Xiaomi.
  2. Install custom recovery (TWRP).
  3. Flash Magisk to receive root.

After this you can:

  • ๐Ÿ—‘๏ธ Delete any packages via Root Explorer or ADB with the flag --user 0.
  • ๐Ÿ”ง Use Titanium Backup for deep cleaning.
  • ๐Ÿ›ก๏ธ Block autostart of system services via Greenify.
โš ๏ธ Attention: Unlocking the bootloader resets all data on the phone Also Xiaomi may void the warranty! When detected root.

On Redmi 9 s MIUI 13 and later, some system applications are protected by the DM-Veritymechanism, and their removal may make it impossible to boot the system. In this case, only flashing will help.

How to return. disabled application back

If problems arise after disabling or deleting an application (for example, notifications or settings stop working), you can restore it.

Methods of returning:

  • ๐Ÿ”„ Through settings: Settings โ†’ Applications โ†’ Show all applications โ†’ Disabled โ†’ select an application and press Enable.
  • ๐Ÿ–ฅ๏ธ Through ADB (if deleted):
adb shell cmd package install-existing com.miui.analytics
  • ๐Ÿ“ฆ Through reset: Settings โ†’ About phone โ†’ Reset settings (will return all system applications, but delete user data!).

If the application was deleted via rootit can only be restored by flashing MIUI or manual installation APK (for user apps).

FAQ: Frequently asked questions about disabling applications on Redmi 9

Is it possible to disable Google Play Services?

โŒ No, this will lead to the inoperability of most applications, including Google Play, Gmail and YouTube. Maximum - you can limit background activity in the battery settings.

Why does it appear again after disabling the application?

This happens due to automatic updates MIUI or Google Play. To prevent:

  1. Disable auto-update for the application in Google Play.
  2. Uninstall updates (see Method 2).
  3. Use ADB to completely remove (see Method 3).
How to disable advertising in system applications?

Advertising in MIUI is shown through the services com.miui.msa.global (Miui System Ads) and com.xiaomi.midrop. They can be disabled via ADB:

adb shell pm uninstall -k --user 0 com.miui.msa.global

It will also help to disable personalized advertising in Settings โ†’ Google โ†’ Advertising.

Is it safe to delete the "Security" application (com.miui.securitycenter)?

โŒ No! This is the security core MIUI, responsible for permissions, antivirus and optimization. Removing it will lead to unstable operation of the system.

How to find out which application can be safely removed?

Use specialized resources, for example:

Also, before deleting, check the package using the command:

adb shell dumpsys package com.miui.analytics

This will show the application dependencies.