How to Remove Android App from Xiaomi Redmi in its Complete Way: From Standard Methods to Deep Cleaning

Why Standard Removal Doesn't Always Work

Have you ever noticed that after you delete an app on Xiaomi Redmi, it still takes up space in memory? Or worse, it reappears in the installed list after a while? MIUI And Android, because standard menu removal often leaves you with a lot of:

  • ๐Ÿ—ƒ๏ธ Cache and temporary files โ€“ up to 50% of the original application size
  • ๐Ÿ“ Residual data in folders /Android/data/ and /Android/obb/
  • ๐Ÿ”„ System tracks in the registry MIUI (pre-installed applications)
  • ๐Ÿ”— Links in Launcher โ€“ icons can remain on the menu even after uninstallation

For example, after deleting Facebook through the standard menu, the memory may remain up to 300-500 MB of garbage is cache photos, databases and settings files, and apps like Mi Video or Mi Music can't be removed without additional manipulation, because they're embedded in the firmware.

In this article, we will discuss 5 ways to delete completely, from simple to advanced, including methods for admin applications and system utilities, but first letโ€™s understand what files remain after standard deletion and why this is important.

๐Ÿ“Š What Xiaomi Redmi model do you use?
Redmi Note 10/11/12
Redmi 9/9A/9C
Redmi 8/8A
Redmi 7/7A
Another model

Method 1: Standard removal via MIUI settings

Letโ€™s start with the simplest method that is suitable for most custom apps (downloaded from Google Play or installed manually through Google Play). APK). This method does not require additional tools, but has limitations:

  • โœ… It works for all user applications (not system applications)
  • โŒ Does not delete residual files in /Android/data/ and /Android/obb/
  • โŒ It does not work for pre-installed applications (Mi Browser, Mi Security, etc.)

Instructions:

  1. Open Settings โ†’ Applications โ†’ Application Management.
  2. Select the desired app from the list (use search if the list is large).
  3. Click Delete and confirm the action.
  4. If the Remove button is inactive, it means the application is system (go to method 3 or 4).

For deeper cleaning after standard removal:

  1. Go to Settings โ†’ Storage โ†’ Cleaning.
  2. Select Deep Clean and wait for the scan to be completed.
  3. Delete the remaining files manually (if they are found).

โ˜‘๏ธ Preparation for complete removal

Done: 0 / 4

Method 2: Remove via Google Play (for downloaded apps)

If the app was installed through the Google Play Market, it can be removed directly from the store.

  • ๐Ÿ”„ Automatically clears Play Market cache after uninstallation
  • ๐Ÿ“ฑ Allows you to remove applications remotely (via the web version of Play Market)
  • โš ๏ธ But it doesn't delete files in /Android/obb/ (It's where the heavy game data is stored)

How to remove it through Play Market:

  1. Open the Google Play Market on your phone.
  2. Click on the profile avatar โ†’ App and device management.
  3. Go to the Installed tab and find the desired application.
  4. Click on the basket icon (Delete) next to the name.

For remote removal:

  1. Open play.google.com in your browser on PC.
  2. Sign in with the same account as on your phone.
  3. Select My Apps and Games โ†’ Installed.
  4. Find the app and click on the cross (Delete).

๐Ÿ’ก

If the app is not removed through the Play Market, check if it is system. โ†’ Applications โ€“ if there is no button โ€œDeleteโ€, then it is built-in software.

Method 3: Remove system applications without root (via ADB)

This is the most effective method for removing pre-installed applications (Mi Browser, Mi Music, GetApps, etc.) that cannot be removed by standard methods.

  • ๐Ÿ› ๏ธ No root rights required (works on any Xiaomi Redmi)
  • ๐Ÿ—‘๏ธ Completely erases the app, including updates
  • โš ๏ธ But when you reset settings or update the firmware, applications can return

What you need:

  • ๐Ÿ’ป Computer with Windows/Linux/macOS
  • ๐Ÿ”Œ USB-cable (original or quality)
  • ๐Ÿ“ฆ Utility. ADB Fastboot (download from the official website)
  • ๐Ÿ”ง Included debugging by USB phone-on

Step-by-step:

  1. Activate Developer Mode: Go to Settings โ†’ About Phone. Click 7 times on the MIUI Version (you will be notified "You are a developer").

USB debugging

  • Back to Settings โ†’ Additionally. โ†’ For developers.
  • Activate the debugging switch over USB.
  • Connect your phone to your PC and select File Transfer (MTP) mode.
  • Open the command prompt (Windows) or terminal (Linux/macOS) in the folder with ADB.
  • Enter the command to check the connection: Adb devices should appear the name of your device.
  • Find out the exact name of the application package (for example, for Mi Browser it is com.android.browser): adb shell pm list packages | grep 'miui' or search the Internet by the name of the app.
  • Delete the application by command: adb shell pm uninstall -k --user 0 name package Example for Mi Browser: adb shell pm uninstall -k --user 0 com.android.browser

If the command is successful, you will see Success. The application will disappear from the menu, but its data will remain in the system (to completely clean up you need root).

List of popular MIUI packages for removal
com.miui.browser (Mi Browser) com.miui.video (Mi Video) com.miui.miservice (Mi Service Framework) com.xiaomi.midrop (Mi Drop) com.miui.analytics (Analytics) MIUI) com.xiaomi.scanner (Scanner) com.miui.cleanmaster (Cleanup)

Method 4: Complete removal with root rights (for experienced)

If you have root rights, you can uninstall any application, including system ones, without any residue.

  • ๐Ÿงน Completely clean all traces of the application (including files in the /data/data/)
  • ๐Ÿ”ง Remove secure system utilities (e.g. Mi Security)
  • โš ๏ธ But it takes care โ€“ an error can lead to the collapse of the system.

Tools required:

  • ๐Ÿ“ฑ Phone with root rights (via Magisk or SuperSU)
  • ๐Ÿ› ๏ธ Root Explorer (Root Explorer, Solid Explorer)
  • ๐Ÿ” Application for browsing packages (App Inspector)

Instructions:

  1. Install Root Explorer and give it root access.
  2. Move to the /data/app/ โ€” stored APK-user-application files.
  3. Find a folder with the name of the package (for example, com.facebook.katana for Facebook) and delete it.
  4. Move to the /data/data/ Delete the folder with the same package name.
  5. For system applications, check folders: /system/app/ /system/priv-app/ Delete files only if you are sure of their purpose!
  6. Reboot the phone.

โš ๏ธ Note: Deleting system files without a backup can result in loss of functionality (e.g., no access to network or camera settings). TWRP before such operations.

Type of applicationDeleting methodNeed root?Deleting residual files?
User-generated (from Play Market)Standard removalโŒ No.โŒ No, the cache stays)
Customized (APK)Through the file managerโŒ No.โš ๏ธ Partially (must be cleaned) /Android/data/)
System (Mi Browser, Mi Music)ADB-teamโŒ No.โŒ No (only deactivation)
Systemic (deep cleaning)Root + manual removalโœ… Yes.โœ… Yes, all files)
Application with administrator rightsFirst revoke the rights, then deleteโŒ No.โŒ No.

Method 5: Remove applications with administrator rights

Some applications (such as Mi Security, Find Device, or antiviruses) are given device administrator privileges, which prevents them from being deleted, and when you try to uninstall the software, you get the error: "You can't delete. First, disable the administrator privileges."

How to remove such an application:

  1. Go to Settings โ†’ Passwords and Security โ†’ Device Administrator Rights.
  2. Find the desired application in the list and disable its rights (swift the slider or press Deactivate).
  3. Back to Settings โ†’ Apps, find this app and remove it in the standard way.

If the application does not appear in the list of administrators, but still is not deleted:

  • Try to turn it off in autoboot (Settings) โ†’ Annexes โ†’ Auto-start).
  • Use it. ADB-Method 3, as it bypasses the administrator's limitations.
  • Mi Security may require you to disconnect your device from your Mi Account (but it will delete all data!).

๐Ÿ’ก

Administrator apps are often disguised as system utilities, and always check the list in Administrator Rights before you delete them, even if the application seems harmless.

How to Clean Residual Files After Deletion

Even after a successful application is removed, traces of it can take up a place in memory, and here's where to look for them and how to delete them:

1. folder /Android/data/ and /Android/obb/

Here are stored:

  • ๐ŸŽฎ Cash games (can weigh several gigabytes)
  • ๐Ÿ“ท Downloaded media files (from Instagram, Telegram)
  • ๐Ÿ—ƒ๏ธ Databases and application settings

How to clean:

  1. Connect your phone to your PC or use a file manager (like FX File Explorer).
  2. Move to the /sdcard/Android/data/ and delete the folder with the name of the application package.
  3. Repeat the same for /sdcard/Android/obb/.

2.Cash and data in MIUI

MIUI store additional files in:

  • /data/system/package_cache/ โ€” Packet cache (requires root)
  • /data/dalvik-cache/ โ€” Optimized Dalvik files (requires root)

3.Cleaning through Recovery (TWRP)

If you have a custom recavator installed (TWRP):

  1. Load to TWRP (clip Power + Volume Up).
  2. Select Advanced โ†’ File Manager.
  3. Move to the /data/data/ and delete the application folder.
  4. Wipe the cache (Wipe โ†’ Cache).

โš ๏ธ Note: Delete files in /data/data/ without root can cause data loss in other applications if you make a mistake with the folder!

Frequent Mistakes and How to Avoid Them

When you remove applications on Xiaomi Redmi, users often face typical problems, and here are the most common solutions:

1. "Delete" inactive (grey button color)

Causes and solutions:

  • ๐Ÿ”’ Systems annex โ†’ use ADB root.
  • ๐Ÿ›ก๏ธ The application has administrator rights โ†’ Turn them off in the security settings.
  • ๐Ÿ”„ Appendix updated โ†’ First roll it back to the factory version in Settings โ†’ Annexes โ†’ โ‹ฎ โ†’ Remove updates.

2.The app has been removed, but the icon has remained

This means that:

  • ๐Ÿ—‘๏ธ The icon is cacheted in Launcher โ†’ Restart your phone or clear the launcher cache (Settings) โ†’ Annexes โ†’ Launcher โ†’ Warehouse โ†’ Clear the cache).
  • ๐Ÿ”— It's a label. โ†’ Press and hold the icon, then drag it to Delete.

3 After removal, the application appears again

Typical of:

  • ๐Ÿ”„ System applications โ†’ They are restored after the update. MIUI.
  • ๐Ÿ“ฆ Pre-installed Services (Mi Service Framework, Analytics).

Decision:

  • Use it. ADB-flag-bearer --user 0 (method 3).
  • Turn off auto-update MIUI In Settings โ†’ The phone. โ†’ Updating the system โ†’ โ‹ฎ โ†’ Settings โ†’ Auto-update.

4. Lack of removal space

Paradoxically, sometimes uninstallation requires a free space.

  • ๐Ÿ—ƒ๏ธ Clear the cache through Settings โ†’ Warehouse โ†’ Cleanup.
  • ๐Ÿ“ Move the files to SD-card.
  • ๐Ÿ”ง Use it. ADB โ€” It does not require free space on the device.

FAQ: Answers to Frequent Questions

Can I remove Mi Browser without root?
Yes, with help. ADB. Use the command: adb shell pm uninstall -k --user 0 com.android.browser This will remove the app for the current user, but it will remain in the system and may return after a reset or update.
How to find out the name of the application package for ADB?
There are several ways: ADB: adb shell pm list packages | grep 'keyword' For example, to search for all applications with 'miui': adb shell pm list packages | grep 'miui' via App Inspector (available on Play Market) on sites like APKMirror APK packet.
What happens if you remove the system application through root?
The consequences depend on the application: ๐ŸŸข Safe to delete: Mi Browser, Mi Music, GetApps, Mi Drop. ๐ŸŸก Mi Security (Lose Virus Scanner), Mi Account (Changes with Xiaomi Account). ๐Ÿ”ด Critical: Settings (com.android.settings), Telephony (com.android.phone) - deleting will render your phone inoperable! Always backup through TWRP before deleting system files.
How to return a remote system application?
There are three ways: Resetting settings (Settings) โ†’ Additionally. โ†’ Recovery and discharge โ†’ Settings reset) - will return all system applications, but delete your data. MIUI โ€” Some applications are restored after a firmware update. APK โ€” If you have a backup copy of the file APK (like backup. TWRP), can be installed through ADB: adb install name file.apk
Why does the app reappear after being deleted via ADB?
It's because it's happening: ๐Ÿ”„ MIUI Restores system applications when updated or reset. ๐Ÿ“ฆ The application has been updated โ€“ only the user version is removed, and the system version remains. ๐Ÿ”ง You used a team without a flag. --user 0 (Solution: use the command with the flag -k (saves cache and data, but prevents automatic recovery: adb shell pm uninstall -k --user 0 packet