Removing unnecessary applications from the Xiaomi Redmi Note 5 is a task that seems trivial at first glance. Users face two key challenges: embedded MIUI services that the system does not allow to uninstall using standard methods, and residual files that continue to occupy memory even after visible deletion. This model, released in 2018 on the basis of MIUI 9/10 (with the possibility of upgrading to MIUI 12.5), has features in the management of the software associated with Xiaomiβs policy of integrating its own services.
Unlike todayβs flagships, Redmi Note 5 (codenamed whyred) runs on a Qualcomm Snapdragon 636 processor with limited internal memory (32/64 GB depending on the modification). Here, every unnecessary application takes precious megabytes, and the background activity of system services (Mi Video, Mi Music, GetApps) additionally consumes battery power. In this article, we will discuss all the current methods of removal from basic to advanced, including working with ADB and manual cache cleaning, taking into account the specifics of the firmware for the Redmi 5 Note.
1. Standard removal through MIUI settings
The most obvious method is the use of built-in tools. MIUI. It is suitable for third-party applications installed by the user through Google Play or.apk files. It is important to note that even after such deletion, folders with data in the system may remain in the system. /data/data/ and cash /cache/.
To remove the application in a standard way:
- π± Open the Settings menu β Annexes β Application management.
- π In the search box, type the name of the program (for example, Facebook or Clean Master).
- ποΈ Click on the basket icon (Delete) in the upper right corner.
- β Confirm the action in the dialog window.
β οΈ Note: If the Remove button is inactive (grey), then the application is system-based and requires superuser rights (root) or commands. ADB Attempting to remove such programs without preparation can lead to malfunctions. MIUI.
Make sure the application is not system-based|Create a backup copy of important data|Close all background processes|Check the free space on the device-->
2. Remove via MIUI launcher (for non-system applications)
Xiaomi offers an alternative way to remove directly from the home screen, which is convenient for quickly clearing the device of rarely used programs, but has a limitation: it does not work for embedded services (Mi Browser, Mi Pay, etc.).
Instructions:
- π Hold your finger on the app icon you want to remove until the menu appears.
- π Drag the icon to the top of the screen where the Remove (or basket) will appear).
- π΄ Release your finger to confirm the action.
π‘ Useful tip: If only Application Information appears instead of Delete, then the program is protected from removal through the launcher. ADB root-access.
Through Settings. MIUI|From the home screen|Through ADB/Termux|Don't delete apps.|Another option-->
3. Remove system applications without root (via ADB)
To remove embedded applications (Mi Drop, Mi Community, Yellow Pages, etc.) without obtaining root rights, you will need a computer and an Android Debug Bridge (ADB) tool. This method is safe if you follow the instructions, but requires care: mistaken removal of critical services (MiuiSystemUI, SecurityCenter) can lead to bootloop ( looped boot).
Step-by-step:
- Activate USB debugging: Go to Settings β About Phone. Click 7 times on MIUI to unlock Developer Mode. Go back to Settings β Additional β For Developers and enable USB Debugging.
- Connect your phone to your PC: Use the original USB Type-C cable (on Redmi Note 5, microUSB connector). On your phone, select File Transfer Mode (MTP).
- Install ADB: Download Googleβs Platform Tools. Unpack the archive and open the cmd in the folder (Shift + right mouse button β Open the PowerShell window here).
Follow the commands:
adb devices(Serial number device should appear)
adb shell pm list packages -f(List of all packages installed)
adb shell pm uninstall -k --user 0 com.miui.yellowpage(Example of Yellow Pages removal)
πΉ List of safe to remove system packages on Redmi Note 5:
| Title of the annex | Packet name | Effects of removal |
|---|---|---|
| Mi Drop | com.xiaomi.midrop | Quick file transfer function will disappear |
| Mi Community | com.miui.forum | There will be no access to the Xiaomi forum |
| Mi Video | com.miui.videoplayer | The video player will be opened through Google Photos or third-party apps |
| GetApps | com.xiaomi.mipicks | Xiaomi App Store will disappear |
| Yellow Pages | com.miui.yellowpage | No access to the service directory (relevant to China/India) |
β οΈ Note: Do not delete packages with the names com.android., com.qualcomm. or com.miui.home, this will cause the system to fail. Before mass deletion, back up via adb backup or Mi Cloud.
What if the ADB canβt see the device?
4. Complete removal with root rights (for power users)
If you're willing to take the risk of root access, it opens up opportunities for deep cleaning. On the Redmi Note 5 root is obtained through unlocking the bootloader and installing a customized Recovery (TWRP).
After obtaining root rights, you can use:
- π οΈ Root Explorer or FX File Explorer for manual folder removal /system/app/ and /data/app/.
- π§Ή Titanium Backup for Freezing or Deleting System Applications.
- π§ SD Maid to clean residual files and cache.
π Key takeaway: Root access gives you maximum freedom, but requires caution, framework-miui-res.apk) It's gonna make it impossible to boot the system. TWRP change.
5. Cleaning of residual files after deletion
Even after uninstallation, the applications in the system remain:
- ποΈ Folders with data in /data/data/[packet]/.
- π§Ή Cash in /cache/ and /sdcard/Android/data/.
- π Settings files in /sdcard/MIUI/ or /sdcard/.data/.
For their removal:
- Use a file manager with superuser rights (e.g. Solid Explorer with root mode enabled).
- Go to /data/data/ and manually delete folders with the names of deleted packets.
- To clear the cache, run in ADB: adb shell pm clear com.example.app (replace com.example.app with the packet name).
β οΈ Warning: Do not delete folders of current running applications, this will lead to their collapse:
adb shell ps | grep [name packet]Alternative methods: shutdown and freezing
If removal is not possible or risky, consider:
- βοΈ Disabling the application: Go to Settings β Annexes β Application management. Select a program and click Disable. The app will disappear from the menu, but stay in the system.
- βοΈ Freeze through ADB: adb shell pm disable-user --user 0 com.miui.weather2 (example of turning off the weather widget).
- π Factory Reset: Delete all user applications and data. Performed through Settings β Additionally. β Recovery and discharge.
π‘ Useful tip: To temporarily disable system applications without ADB Use the App Inspector (available on Google Play), which allows you to analyze the activity of programs and block them through the battery. β Optimization.
7. Frequent mistakes and how to avoid them
When working with the removal of applications on Redmi Note 5, users make typical mistakes:
- π« Removing Critical Services: For example, com.miui.securitycenter is responsible for security β its removal will disable antivirus and permissions.
- π Interruption ADB-If the adb uninstall process is interrupted, the packet may remain in a "semi-remote" state, causing failures.
- π± Ignoring Backup: Without Backup, System Recovery After Error Will Take Hours.
- π Wrong Reset: Choosing to Delete All Data instead of Resetting will result in loss of photos and files.
πΉ How to Restore a Remote System Application?
If the phone becomes unstable after being removed via ADB or root, return the packet with the command:
adb shell cmd package install-existing com.miui.weather2Or reflash the device through the Mi Flash Tool (instructions on the official forum).