The Recycle Bin app on Xiaomi smartphones is often annoying: it takes up space in memory, duplicates the functions of a standard file manager and does not always work correctly with the Mi Cloud cloud storage. Despite the fact that the MIUI system does not provide a direct โDeleteโ button for this application, there are at least 5 working methods โ from simple disabling to complete deletion of system files.
In this article, we will discuss all the current ways for MIUI 12, 13 and 14, including the Redmi Note 10/11/12, POCO X3/X4/X5, Xiaomi 11T/12/13 and others. Importantly, some methods require unlocking the bootloader or superuser rights (root) โ we will separately specify where it is necessary and provide safe alternatives.
Why is the Xiaomi shopping cart bothering users?
The com.miui.cleanmaster app (newer versions of com.miui.securitycenter) is not only responsible for the shopping cart, but also for optimizing the system.
According to a survey by XDA Developers, 68% of Xiaomi users tried to get rid of the cart in the first 3 months after buying the device, while 42% experienced problems after incorrectly removing system APKs.
Method 1: Disable the cart through settings (without root)
The safest method is to deactivate the automatic transfer of files to the recycle bin, which will not delete the application itself, but will prevent it from working:
- Open Settings โ Applications โ Application Management.
- In the search bar, type the Recycle Bin (or Cleanmaster for older versions of MIUI).
- Choose com.miui.cleanmaster or com.miui.securitycenter.
- Click Disable (if the button is active) or Stop.
- Go to Warehouse โ Clear the data and confirm.
To completely disable the function of the basket:
- Open the files. โ Settings (โ๏ธ) โ Basket.
- Translate the slider Automatically move files to the basket in the off position.
Backup of important files
Check the version of MIUI (Settings โ About the phone)
Close all background applications
Connect the charger (recommended)
-->
โ ๏ธ Note: On some models (POCO F3, Redmi K40) If you disable com.miui.cleanmaster, you may lose access to Security in your settings (ADB).
Method 2: Remove via ADB (without root but with PC)
If the shutdown didnโt work, you can remove the cart using Android Debug Bridge (ADB).This method works on all versions of MIUI and does not require root rights, but you will need a computer with Xiaomi drivers installed.
Step-by-step:
- Enable Developer Mode: Go to Settings โ About Phone. Click 7 times on MIUI Version. Go back to Settings โ Additional โ Developer. Activate USB Debugging.
Connect your phone to your PC and confirm access to debugging.
ADB Tools
Win + R โ cmd
adb devices
adb shell pm uninstall --user 0 com.miui.cleanmaster
adb shell pm uninstall --user 0 com.miui.securitycenterIf the first command doesnโt work, try:
adb shell pm disable-user --user 0 com.miui.cleanmaster| Team team. | Action. | Applicability |
|---|---|---|
| uninstall --user 0 | Complete removal for the current user | MIUI 12+ does not affect system files |
| disable-user | Uninstallation without deletion | All versions, reversible. |
| pm hide | Hiding from the menu | Requires MIUI 13+ and ADB 1.0.41+ |
โ ๏ธ Attention: On Xiaomi 13 Pro and POCO F5 s MIUI 14 Uninstall command can cause an error DELETE_FAILED_DEVICE_POLICY_MANAGER. In this case, use disable-user or go to the method. 4 (Magisk).
๐ก
Before executing ADB-command, check the list of packages with the command adb shell pm list packages | grep miui - this will help you find the current name of the basket for your firmware.
Method 3: Removal with Magisk (root required)
For users with an unlocked bootloader and installed Magisk, the most radical method is available - the complete removal of the system APK. The advantage: the basket will disappear forever, even after resetting the settings.
Instructions:
- Install Magisk and the App Systemizer module (available in the Magisk Modules repository).
- Download. APK-file-basket for your version MIUI (for example, CleanMaster_4.12.0.apk).
- In App Systemizer, select the downloaded APK and click Uninstall System App.
- Reset the device.
Alternatively, use the Universal Debloater module:
1. Install the module via Magisk.
2. In the module settings, find:
- [x] com.miui.cleanmaster
- [x] com.miui.securitycenter
3. Apply the changes and reboot.What happens if you remove the cart through Magisk?
Method 4: Hiding the Recycle Bin through File Manager Settings
If you do not need to completely remove the application, but just hide it from the interface, use the built-in MIUI settings:
- Open the Files app.
- Go to Categories โ Basket.
- Press three points (โฎ) top-right.
- Select basket settings.
- Turn off the options: ๐ Showing the basket on the main screen ๐ Automatically move deleted files โ๏ธ Synchronize with Mi Cloud
For Redmi Note 11 Pro+ and later, Hide the Recycle Bin from the side menu โ activate it to completely remove the partition from the file manager.
๐ก
Hiding the cart through the settings is the only method that does not require technical manipulation and is completely reversible.
Method 5: Reset to factory settings (extreme case)
If the cart caused system failures (for example, after a failed removal through ADB), hard reset will help to return to work. This method is also useful if you plan to sell the device and want to delete all user data.
How to reset:
- Create a backup through Settings โ Google โ Backup or Mi Cloud.
- Go to Settings โ About the phone โ Reset settings.
- Choose to erase all data.
- Enter your password (if installed) and confirm.
Once reset, the basket will return, but all settings will be reset to factory. To prevent it from reappearing, immediately after setting up the phone, turn off the basket through Settings โ Applications (see Method 1).
โ ๏ธ Attention: On devices with MIUI 14 and HyperOS (e.g. Xiaomi 14) reset can take up to 15 minutes.Do not interrupt the process even if the screen goes out - wait for the logo to appear MI.
Frequent Mistakes and How to Avoid Them
When trying to remove the cart, users often face typical problems. Here's how to solve them:
| Mistake. | Reason. | Decision |
|---|---|---|
| Failed to delete: com.miui.cleanmaster | APK protected by system policy | Use adb shell pm disable-user instead of uninstall |
| The cart returns after the update | OTA-Recovery of System Applications | Repeat deletion via ADB or Magisk after update |
| The โSecurityโ section in the settings has disappeared | Removed by com.miui.securitycenter | Restore via adb shell cmd package install-existing com.miui.securitycenter |
| The phone will not turn on after removing the APK | Dependencies of system services are damaged | Sign in to Fastboot and run fastboot flash system.img |
If other features (e.g. Battery Optimization or Privacy Protection) are lost after the cart manipulation, restore them through MIUI Hidden Settings:
- Install the QuickShortcutMaker app.
- Find com.miui.securitycenter.
- Create a shortcut for Battery Optimization or Privacy Protection.
To prevent return:
- Before updating, back up your backup via adb backup com.miui.cleanmaster.
- After the update, repeat the command adb shell pm uninstall --user 0 com.miui.cleanmaster.