Xiaomiโs Other is a black hole for free space, and even after removing photos, videos and unnecessary apps, this mysterious segment continues to take up gigabytes, preventing updates or new programs from being installed. What is it?
The fact is that under the Other, the system hides the cache of applications, remnants of deleted programs, temporary update files, error logs and even fragments of data from MIUI that are not cleaned by standard means. For example, after updating the firmware through OTA, this section may remain backups weighing up to 1-3 GB, which the system does not delete automatically. And if you are actively using messengers like Telegram or WhatsApp, their cache can inflate the Other by hundreds of megabytes per month.
In this article, 5 proven ways to clean the Other section on Xiaomi, from simple (via built-in tools) to advanced (using ADB and manual file deletion). All methods have been tested on the Redmi Note 12 Pro+, POCO X5 Pro and Xiaomi 13 Ultra with MIUI 14/15, but will also work for older devices. Importantly, some operations require root rights or a PC connection - we will note these cases separately.
1.What is hidden in the โOtherโ section of Xiaomi?
Before you clean, you need to know what's taking up space.
- ๐ Application cache โ temporary files that programs create to speed up work (for example, thumbnails in a gallery or map data in Google Maps).
- ๐ Remnants of Remote Applications โ folders with settings and data of programs that you have long uninstalled.
- ๐ฆ Update files MIUI โ backups of firmware (.zip) that the system downloads before installation OTA.
- ๐ Logs and error dumps are files with crash information (.log,.dmp) that are created when applications crash.
- ๐ Symbolic links โ virtual โshortcutsโ to files that the system uses for compatibility.
- ๐๏ธ Garbage from messengers โ cache of stickers, gifs and media files from Telegram, Viber or WeChat.
For example, after updating MIUI 14 โ MIUI 15, the /cache/ota folder weighing up to 2-3 GB may remain in the Other section, which the system does not delete automatically. And if you often reinstall games (such as Genshin Impact or Call of Duty Mobile), their cache can get stuck in the /data/data folder even after uninstallation.
To see what exactly takes up space, use a root file manager (like FX File Explorer or Solid Explorer) and check the following folders:
| folder | What it keeps. | Can I remove it? |
|---|---|---|
| /data/log | Logs of system and applications | Yes (except for current logs) |
| /cache | Update cache and temporary files | Yes (fully) |
| /data/dalvik-cache | Android virtual machine cache | Only when discharged or through ADB |
| /data/data/<package> | Application data (including remote applications) | Partially (only folders of uninstalled programs) |
โ ๏ธ Attention: Delete files from folders /system or /vendor Do not touch files with extensions.odex,.apk or.so - these are system components.
Method 2: Cleaning through built-in MIUI tools
Start with standard tools, they are safe and do not require root rights. MIUI 14/15 has two tools to clean the Other:
- Clean Memory in Settings: Go to Settings โ About Phone โ Memory. Slip to Other and select Clear. Confirm deletion of temporary files. This method removes app cache and temporary files, but does not touch deep system data.
These methods will release between 500MB and 1.5GB, but will not remove:
- ๐ฆ Remnants of Remote Applications.
- ๐ Error logs older than 30 days.
- ๐ Cache of messengers (for example, folder) Telegram/Telegram Images).
Make a backup copy of important data|Battery charge > 50%|Close all applications|Connect to Wi-Fi (for downloading tools)-->
โ ๏ธ Warning: If after cleaning through "Safety" the smartphone began to brake, restart it.
3. Method 2: Manual deletion of the cache of messengers and social networks
Messengers are the main memory eaters in the Other section, for example, Telegram caches all the media files you view by default, and WhatsApp stores backups of chats to clear them:
๐ Telegram
- Open Telegram โ Settings โ Data and memory.
- Tap Memory Use and select Clear Cache.
- For deep cleaning, go to Settings โ Telegram folder and manually delete the folders Telegram Images, Telegram Video (use the file manager).
๐ WhatsApp
- In WhatsApp, go to the โฎ โ Settings โ Memory.
- Sort files by size and remove unnecessary ones.
- To delete backups, go to /sdcard/WhatsApp/Databases and delete the msgstore.db.crypt14* files (except the most recent one).
Also check the folders of other messengers:
- ๐ฌ Viber: /sdcard/Viber/Media
- ๐ฑ WeChat: /sdcard/Tencent/MicroMsg/Download
- ๐ฎ Discord: /sdcard/Android/data/com.discord/cache
๐ก
If you share files frequently in instant messengers, set up automatic cache cleanup. Telegram does this in Settings โ Data and Memory โ Autoclean Media (set a limit, for example, 1 GB).
After manually cleaning the messengers will be free from 1 to 5 GB, depending on the activity. the main thing is not to delete the folders Databases completely, otherwise you will lose the chat history!
Method 3: Removing Remnants of Remote Applications
When you delete an application through Settings, the system often leaves its folder with data in /data/data. These "residues" can weigh hundreds of megabytes.
- Install a file manager with root support (such as Root Explorer or FX File Explorer).
- Go to /data/data and sort the folders by date of change.
- Folders with names of remote applications (e.g., com.tencent.ig for PUBG Mobile) can be deleted.
If root is not available, use ADB:
adb shell pm list packages -uThis command will show you a list of uninstalled, but not completely deleted, applications to clear their data.
adb shell pm clear <package_name>For example, to clean up Facebook residues:
adb shell pm clear com.facebook.katanaHow to get root rights on Xiaomi?
| Annex | packet ID | Typical residue size |
|---|---|---|
| PUBG Mobile | com.tencent.ig | 500 MB - 1.2 GB |
| Call of Duty Mobile | com.activision.callofduty.shooter | 800 MB - 1.5 GB |
| com.facebook.katana | 200-400 MB | |
| com.instagram.android | 100-300 MB |
โ ๏ธ Note: Do not delete folders of system applications (for example, com.android.settings or com.miui.home) โ this will lead to a crash. MIUI.
5. Method 4: Cleaning through ADB (without root)
If root is not available but you need to remove the deep cache, use ADB (Android Debug Bridge), which works for all Xiaomis with USB debugging enabled.
๐ Preparation
- Turn on USB Debugging in Settings โ About Phone โ MIUI version (shap 7 times according to version, then go back to Settings โ Additional โ For developers).
- Download ADB Tools for PC.
- Connect your smartphone to your computer and confirm your trust in the device.
๐ Cleanup commands
Open the command line in the ADB folder and do:
- Cleaning the cache of all applications: adb shell pm trim-caches 999999999G This command forcibly clears the cache of all user applications.
- Delete temporary update files: adb shell rm -rf /cache/ota* adb shell rm -rf /data/ota_package/*
- Cleaning Logs: adb shell logcat -c adb shell rm -rf /data/log/*
Once you've done the commands, restart your smartphone. This method will free up 1 to 3 GB, but it doesn't touch the app data.
๐ก
ADB is the safest way to clean deep without root, and it doesnโt delete critical system files, but requires a connection to a PC.
6. Method 5: Resetting cache via Recovery (last chance)
If previous methods didnโt help and the Other section still takes >5GB, try resetting the cache via Recovery.This wonโt delete your data, but will clear the system cache, including:
- ๐ฆ Dalvik cache (accelerates application launches).
- ๐ Logs of system and kernel.
- ๐ Temporary update files.
โ Instructions
- Turn off your smartphone.
- Press the Power button + Volume up to enter Recovery.
- Select Wipe & Reset โ Wipe Cache (use volume buttons for navigation).
- Confirm the action and wait for the completion.
- Reboot the device (Reboot).
The first run after a cache reset can take 5-10 minutes โ this is normal, as the system rearranges the Dalvik cache.
โ ๏ธ Note: Do not confuse Wipe Cache with Wipe Data! The second option will delete all your data (photos, apps, settings).
7. How to prevent the โOtherโ from being filled in in the future?
To prevent the โOtherโ section from growing again, follow these rules:
- ๐ Clean the cache regularly through Settings โ Memory. โ Other (once 1-2 weeks).
- ๐ต Limit the cache of messengers in their settings (for example, in Telegram set a limit of 500 MB).
- ๐ซ Do not use Google Playโs Memory Optimizers โ they often delete useful data and slow down the system.
- ๐ฅ Remove the old ones. OTA-files after updating MIUI (folder /cache/ota).
- ๐ Check โOtherโ** after removing large apps (games, video editors).
You can also set up automatic cleaning:
- Open Security. โ Cleanup โ โ (Settings).
- Turn on Auto Cleanup and set a schedule (e.g. once a week).
๐ก
If you install/remove games frequently, use SD Maid, which automatically finds and removes the remnants of uninstalled programs.