Are you trying to make room on Xiaomiโs smartphone, but some apps stubbornly do not want to be removed? System utilities like Mi Video, Mi Music or GetApps do not have a โDeleteโ button, and when you try to uninstall, they give an error โDelete is forbidden by the administrator of the deviceโ? This problem is familiar to many owners of devices on MIUI โ Xiaomiโs proprietary shell blocks the removal of preinstalled programs, even if you do not need them.
In this article, we will discuss 5 working ways to uninstall an application on Xiaomi that is not removed by standard methods โ from simple disconnection to complete removal through ADB and hidden MIUI settings. You will also learn which applications can be safely removed and which should not be touched so as not to disrupt the system. Instructions are suitable for all modern models: Redmi Note 12/13, POCO X5/F5, Xiaomi 13/14 and others based on MIUI 14/15.
Why are some apps on Xiaomi not being removed?
Before we get to the deletion methods, it is important to understand why MIUI blocks the uninstallation of certain programs.
- ๐น System applications - part of firmware MIUI, These are the basic functions (e.g. com.android.phone for calls) that can be disrupted by deleting them.
- ๐น Xiaomi's pre-installed services are Mi Account, Security, Theme Manager. They're integrated into the shell, but some can be disabled.
- ๐น Applications with administrator rights, such as Google Play Services or Knock (to unlock the screen), require removal of the rights beforehand.
In addition, some models (especially for the Chinese market) have regional restrictions, for example, in firmware for Redmi and POCO for China, you can not remove the Mi App Store or Mi Pay without root rights, and Googleโs policy may also block some system APKs (for example, com.google.android.gsf) are protected from removal at the Android level.
โ ๏ธ Note: Deleting system applications without understanding their purpose may result in loss of functionality (e.g., stop calling, mobile internet or push notifications). Always check the name of the package (com.xiaomi...) before deleting.
Method 1: Disabling the application through MIUI settings
If you can't delete an application, you can turn it off, and that will free up some of the memory and stop the background activity, and it's safe and doesn't require any additional tools.
Instructions:
- Open Settings โ Applications โ Application Management.
- Select the app you want (such as Mi Video).
- Click Disable (if the button is inactive, tap the three dots in the top corner and select Disable).
- Confirm the action in the dialog window.
Once disabled, the app will disappear from the menu, but will remain in the system, its data will be stored, and if necessary, you can turn it back on in the settings, which is suitable for most preinstalled Xiaomi utilities, except for critical ones (for example, Settings or Phone).
Check if it is system-based (the name of the package starts with com.android or com.xiaomi.core)
Make sure it is not used by other services (e.g. Mi Account for sync)
Save important data from the app (if any)
Reboot your phone after shutdown so the changes take effect-->
Method 2: Removal via MIUI Hidden Settings (no root rights)
MIUI hides some settings from the user, but you can unlock them with the code for the engineering menu, which allows you to remove some pre-installed applications without ADB or root rights.
Steps:
- Open the phone app and enter the code: ##4636##
- In the menu that appears, select Phone Information (or Usage Statistics).
- Tap the MIUI version 5-7 times until the notification โYou are a developer!โ appears.
- Go back to the basic settings and open Additional โ For developers โ MIUI Hidden Settings.
- Find the App Manager section and select the removal app.
Not all apps will be available for removal through this menu โ usually only those that can be safely uninstalled are displayed here. If the desired app is not on the list, try the next method.
##2664##This code opens the sensor testing menu, but sometimes unlocks hidden settings.-->
Method 3: Removal via ADB (no root rights)
ADB (Android Debug Bridge) is a debugging tool that allows you to manage system files without root rights.
Step-by-step:
- Turn on USB debugging: Go to Settings โ About Phone. Tap the MIUI 7 times to activate Developer Mode. Go back to Settings โ Additional โ For Developers. Activate USB debugging and confirm permission.
- Install ADB on your computer: Download Google's Platform Tools. Unpack the archive into any folder (e.g., C:\adb). Connect your phone to your PC via USB (select File Transfer Mode).
Check the connection:
adb devicesThe name of your device should appear.
Delete the annex:
adb shell pm uninstall -k --user 0 com.xiaomi.namespaceReplace com.xiaomi.namespace with the package of the desired application (see table below).
Example of commands for popular applications:
| Annex | Packet name | Can I remove it? |
|---|---|---|
| Mi Video | com.miui.videoplayer | Yes. |
| Mi Music | com.miui.player | Yes. |
| GetApps (Mi App Store) | com.xiaomi.mipicks | Yes (but software updates will be unavailable) |
| Mi Browser | com.android.browser | Yes. |
| Security (Security) | com.miui.securitycenter | No (critically for the system) |
โ ๏ธ Note: Pm uninstall command with flag --user 0 It deletes the application only for the current user. APK It stays in the system, but the space is vacated.
Mi Video|Mi Music|GetApps (Mi App Store)|Mi Browser|Other-->
Method 4: Using Universal Android Debloater (GUI for ADB)
If working with the command line seems difficult, you can use Universal Android Debloater utility, a graphics shell for ADB, which makes it easier to remove unnecessary applications.
Instructions:
- Download Universal Android Debloater from GitHub.
- Unpack the archive and run the UniversalAndroidDebloater.exe file.
- Connect your phone to a PC with USB debugging enabled (as in Method 3).
- In the utility, click Refresh โ a list of all installed applications will appear.
- Check the boxes for unnecessary programs (for example, Facebook, LinkedIn, Mi Pay).
- Click Uninstall selected packages and confirm the action.
Advantages of this method:
- ๐น Visual interface โ no need to remember commands.
- ๐น Ability to save a list of remote applications for reuse.
- ๐น Recovery of accidentally deleted programs.
The downside: the utility does not show which applications are critical to the system, so check their names online before removing them.
How to recover a remote application via ADB?
Method 5: Complete removal with root rights (for power users)
If you're willing to take the risk of getting root rights, you can uninstall any application, including the system one.
- ๐น Unlocked bootloader (bootloader).
- ๐น Established custom restoration (TWRP).
- ๐น Root Explorer or Titanium Backup.
Step-by-step process:
- Unlock the bootloader through the official Xiaomi tool (requires a Mi Account and wait 7-15 days).
- Install TWRP for your model (see instructions on XDA Developers).
- Squeeze Magisk to obtain root rights.
- Install Root Explorer and go to /system/app or /system/priv-app.
- Find the folder with the name of the application being removed (such as MiBrowser) and delete it.
- Reboot the phone.
Warnings:
- ๐น The guarantee will burn after unlocking the loader.
- ๐น Risk of โbrickingโ the device in case of error.
- ๐น Some banking applications (Sberbank, Tinkoff) will stop working due to root rights.
โ ๏ธ Note: On new Xiaomi models (e.g. Redmi Note 12 Pro)+ or Xiaomi 14) unlocking the bootloader can lead to blocking encryption, which means that after the restart, the phone will require a password to even access files on the internal drive.
๐ก
root rights give you complete control over the system, but they are not warranty and can disrupt some functions (for example, Google Pay or banking applications).
Which apps can be removed on Xiaomi and which ones canโt?
Not all pre-installed apps are safe to remove. Below is a table divided into categories:
| Category | Examples of applications | Can I remove it? | Effects of removal |
|---|---|---|---|
| Multimedia. | Mi Video, Mi Music, Gallery | Yes. | You will lose the standard player, but you can install an alternative (VLC, MX Player). |
| browsers | Mi Browser, Chrome | Yeah (except WebView) | Without a browser, links from other applications will not be opened. |
| Social media | Facebook, LinkedIn (pre-installed) | Yes. | You'll be freed up, but your tied accounts will be gone. |
| System utilities | Security, Mi Account, Settings | No. | Violation of the phone, inability to log in. |
| Google services | Google Play Services, Gmail | Partially. | Without Play Services, many apps (such as Uber or Delivery Club) will no longer work. |
Before you delete, check the app on APKMirror or Google Play โ if itโs available for download, it can be safely removed and restored if necessary.
Frequent Mistakes and How to Avoid Them
When trying to remove an app on Xiaomi, users often encounter errors.
- ๐น ยซDeletion is prohibited by the device administrator โ means that the application is protected by the policy MIUI. Solution: Use ADB or Hidden Settings.
- ๐น ยซFailed to be deleted: error -24ยป โ This occurs when you try to remove a system application without root rights. Solution: use the command adb shell pm uninstall. -k --user 0.
- ๐น ยซThe app is gone, but the place is not free, so you only disabled it, but did not delete it. APK. Solution: Use ADB or root rights for complete removal.
- ๐น ยซPhone stopped turning on after deletion" - critical app removed.Solution: Fastboot or Recovery phone run.
To avoid problems:
- ๐น Always back up before deleting (via Settings) โ System system โ Backup).
- ๐น Check other usersโ reviews on forums (for example, 4PDA or XDA).
- ๐น Start by disabling the app, rather than immediately removing it.
1. Turn off the phone.
2.Plug Volume Up + Power to enter Recovery.
3. Select the Wipe cache partition.
4.Reset the device.-->