Why is the standard Chrome removal on Xiaomi not working?
You tried to remove Google Chrome through the app menu on your Xiaomi, but instead of the βDeleteβ button, you only saw βDisableβ or βDelete Updatesβ? This is not a coincidence β the manufacturer and Google specifically restrict usersβ experience.The fact is that Chrome on most Xiaomi devices (including Redmi Note 12, POCO X5, Black Shark 5, etc.) is installed as the default system application. Such programs are protected from complete removal without additional rights.
Even if you managed to βremove updatesβ, the browser core remains in the system and takes up to 150-200 MB of memory. Moreover, Chrome can automatically update through Google Play or MIUI background services, returning to its original state. In this article, we will discuss 4 ways to completely remove Chrome from Xiaomi smartphones, including methods without root rights and using ADB.
Before you start, consider that removing system applications can affect the stability of MIUI. For example, some features like Google Assistant or WebView may stop working correctly.
Method 1: Turn off Chrome without deleting (the safest)
If you do not need a complete removal, but just hide Chrome from your eyes and free some resources, use the built-in MIUI tools. This method does not require superuser rights and reversible:
- π± Open the Settings. β Annexes β Application management.
- π In the search bar, type βChromeβ and select the app.
- π Click βDisableβ (if the button is inactive, first click βDelete UpdatesΒ»).
- ποΈ Confirm the action in the dialog window.
Once disabled, Chrome will disappear from the application menu and stop consuming resources. However, its files will remain on the system, taking up to ~100 MB of memory. To return the browser, you just need to re-find it in the settings and click "Enable".
β οΈ Note: Some Xiaomi models (e.g. Redmi) 10C or POCO M4 Pro) disabling Chrome can cause Google Play Services to crash. If you notice errors when updating apps after the procedure, turn Chrome back on.
Sync Bookmarks with Google Account
Remove the browser cache in Settings β Storage
Check for an alternative browser (Firefox, Edge)
Create a recovery point in MIUI (Settings β My device. β Backup)-->
Method 2: Removal via ADB (without root rights)
The Android Debug Bridge (ADB) tool allows you to uninstall system applications without getting root access.This method works on all Xiaomi devices with a bootloader unlocked. If you have never connected to a PC through an ADB, first do the training:
- π₯οΈ Install Platform Tools on your computer (Windows/macOS/Linux).
- π² On your smartphone, activate Developer Mode: go to Settings β The phone. β Version. MIUI And tap it 7 times.
- π§ Back to Settings β Additionally. β For developers and enable debugging by USB.
- π Connect your phone to your PC and confirm your debugging permission.
Now open the command line (or Terminal) in the platform-tools folder and execute commands in order:
adb devices(Your device should be displayed. If not, check the drivers or cable.)
adb shell
pm uninstall -k --user 0 com.android.chromeIf the command is executed without errors, Chrome will be deleted for the current user.
- β The app will disappear from the system.
- β Free up to 200 MB of memory.
- β Chrome files will remain in the system partition (but will not be available).
- β After resetting, Chrome may return.
π‘
If the pm uninstall command issues a Failure error [DELETE_FAILED_INTERNAL_ERROR], Try the alternative command: adb shell pm disable-user --user 0 com.android.chrome.This will disable Chrome at user level without physically deleting.
Method 3: Complete removal with root rights (for experienced)
If your Xiaomi already has root access (for example, through Magisk), you can delete Chrome along with all its files and dependencies. This method is the most radical and requires caution. FX File Explorer.
Instructions:
- π Open the file manager and go to /system/app/ or /system/priv-app/.
- π Find folders with names: Chrome ChromeStub WebViewGoogle (if not in use)
Chrome_bak
π Reset the device.
Once rebooted, Chrome will be completely uninstalled and the space it occupies will be freed up.
| Problem. | Probability. | Decision |
|---|---|---|
| Google Play Services malfunction | High (30β40%) | Install an alternative WebView (e.g. Bromite SystemWebView) |
| Errors in updating applications | Average (20%) | Restore ChromeStub or roll back through backup |
| Some system features (e.g. Google Assistant) are not working. | Low (10%) | Install MicroG as a replacement for Google Services |
β οΈ Attention: On devices with MIUI 14 and later, the removal of WebViewGoogle can lead to the collapse of system applications using web browsing (for example, Mi Browser or Mi Community.
What if Chromeβs push notifications stopped working after deleting?
Method 4: Use of custom firmware (for enthusiasts)
If you're willing to go further than just removing Chrome, consider installing custom firmware without Google services preinstalled (called GApps-free builds).
- π± LineageOS (without GApps)
- π± Pixel Experience (with optional GApps)
- π± HaventOS or DerpFest (for advanced users)
Advantages of this method:
- β Full control over system applications.
- β Choosing which Google services to install.
- β Often better performance and battery life.
Disadvantages:
- β Requires unlocking the loader (data reset).
- β SafetyNet problems (bank applications will not work).
- β No official support from Xiaomi.
Instructions for installing custom firmware are outside the scope of this article, but we recommend starting with the official XDA-Developers forum, where there are separate branches for each Xiaomi model.
π‘
Custom firmware is the only way to get rid of Chrome and other Google system apps, but it requires technical skills and can take away your warranty.
How to check if Chrome is completely removed?
Even after successful removal, Chrome can leave traces in the system. Here's how to check that the browser is uninstalled without residue:
- π Open the Settings. β Apps and check the list for Chrome availability.
- π Use a file manager (such as Solid Explorer) to search for keywords: chrome webview com.android.chrome
App Inspector
Google Play
Settings β Storage
150β250 MB
If you find residual files, you can manually delete them through ADB or a root-access file manager, for example, to clean up your cache and Chrome data, do:
adb shell pm clear com.android.chromeTo find hidden files, use the command:
adb shell find / -name "chrome" 2>/dev/nullFrequent problems and their solutions
When you delete Chrome on Xiaomi, users experience common errors, and we have collected the most common ways to fix them:
| Problem. | Reason. | Decision |
|---|---|---|
| Chrome is back after Google Play update | Automatic reinstallation through the Play Store | Turn off auto-update for Chrome in Google Play settings or delete it through ADB again |
| Mistake. INSTALL_FAILED_INVALID_APK When installing an alternative browser | Damaged Package Installer cache | Run adb shell pm clear com.android.packageinstaller and restart the device |
| Web browsing in other apps (such as Twitter or Instagram) does not work | Removed WebView that used Chrome | Install an alternative WebView (e.g. Bromite SystemWebView) or restore WebViewGoogle |
| The device does not pass SafetyNet after removing Chrome | Changes to the system section | Use Magisk to mask changes or install Universal SafetyNet Fix |
β οΈ Attention: On devices with MIUI Global or MIUI Europe removing Chrome could result in blocking access to some Mi Account features (such as syncing notes or cloud storage).If you are actively using Xiaomi services, consider turning off your browser instead of completely removing it.