Owners of Xiaomi, Redmi and Poco smartphones often face the intrusiveness of Google pre-installed apps that take up space in memory and consume battery resources. The standard deletion procedure through settings is not always available, since Google Chrome is a system component of the Android operating system. Complete disposal of the browser requires deeper intervention in the structure of the MIUI or HyperOS shell.
Many users prefer alternative solutions such as Firefox, Brave or the built-in Mi Browser, considering them more functional or private. However, simply removing the icon is not enough - the application continues to hang in the background. In this guide, we will discuss methods to deactivate or completely remove the browser at the system level.
It is worth noting that the complete removal of system applications carries certain risks for the stability of the device. Android is closely integrated with Google services, and incorrect removal of components can lead to errors in the work of other programs. Therefore, before starting any manipulations, you need to weigh all the pros and cons, and also create a backup of important data.
Why Chrome Can't Be Deleted in the Normal Way
The main reason for the inability to remove files from the system is because of operating system access rights, because applications installed by the OS manufacturer or vendor are marked as system, and because a user account is not privileged to modify the /system/app partition where the files are stored, trying to delete them through the file manager without root rights will not lead to anything.
Xiaomi’s MIUI and HyperOS shells further restrict user experience for security and Google partnerships. Chrome is often used as a web page engine for other applications, which is why the Remove button in the settings has been replaced with Disable or not.
⚠️ Note: Attempts to obtain root rights to delete system files can lead to loss of warranty and disruption of banking applications that are sensitive to changes in system integrity.
There's a myth that simply removing updates returns an application to the factory version and frees up a lot of space. APK-The file remains unchanged, leaving only space occupied by the cache and temporary data.
💡
System applications are protected by Android access rights, so special methods are required to completely remove them, which go beyond the standard settings interface.
Preparing Xiaomi smartphone to remove system applications
Before you start deleting Google Chrome, you need to configure your device correctly, and the first step is to activate the developer mode, which is hidden by default, which will allow you to access debugging over USB, a key tool for interacting with the system through your computer.
You will need a USB cable, a computer with Windows, macOS or Linux, as well as ADB drivers installed. Without a connection to the PC, you will not be able to completely remove the system application, since superuser rights are required, which we will emulate through the debugging bridge.
- 📱 Go to Settings. → About the phone and seven times click on the version MIUI, until a notification of the developer mode is included.
- 🔧 Open the menu Additionally → For developers and activate the "Debugging by" switch USB».
- 🔒 When connecting to a PC on the smartphone screen, a request for debugging permission will appear - be sure to click "Allow».
It is also important to turn off the Device Search feature in your Mi Account settings if it is active, as it may block some commands. Make sure that the battery is at least 50% charged to avoid suddenly shutting down while you are working with system files.
☑️ Xiaomi Preparing to Remove Applications
Disconnection method through system settings
The safest, though not the most radical, way is to shut down the app completely, with Chrome stopping running, updating and consuming traffic, effectively ceasing to exist for the user, a method that requires no computer and is safe to warrant.
To start, open Settings → Apps → All apps. Find it in the Chrome list. If the delete button is not available (gray), click on “Other permissions” or immediately look for the “Disable” button.
Once confirmed, the browser icon will disappear from the desktop and no longer occupy RAM in the Task Manager, but the space in the internal memory occupied by the installation file itself will not be freed up, a compromise for those who are afraid to get into the system code.
| Parameter | Normal removal | Shutdown | Removal via ADB |
|---|---|---|---|
| Preservation of the guarantee | Yes. | Yes. | Yeah (no Root) |
| Liberation of the place | Complete. | No (only cache) | Complete. |
| Risk to the system | No. | No. | Medium. |
| Possibility of return | - | Any moment. | Resetting or re-installation only |
💡
Before disabling Chrome, make sure that you have an alternative browser installed and configured, otherwise links from messengers may open with errors or not open at all.
Complete removal via ADB (Android Debug Bridge)
For those who want to completely erase the presence of Google Chrome from the device memory, there is a method using the ADB toolkit. This method does not require superuser rights (Root), but works at the system command level. It allows you to delete applications for the current user (user 0), making them inaccessible.
First, download and install Platform Tools from the official Android developer site. Unpack the archive into a convenient folder, such as C:\adb. Open the Command Prompt (CMD) or PowerShell in this folder. Connect the smartphone with a cable and enter the communication verification command:
adb devicesIf a device has been listed, the connection is successful. Now you need to know the exact name of the browser package. Enter adb shell pm list packages | grep chrome. For a standard Google browser, it is usually com.android.chrome.
The removal command itself is as follows:
adb shell pm uninstall -k --user 0 com.android.chromeThe -k option saves data and cache in case of recovery, and --user 0 indicates deletion for the main user. Once the command is executed, the application will disappear from the installed list. If you decide to return it, the cmd package install-existing com.android.chrome command will help, but only before the first reset.
What if the ADB can’t see the phone?
Use of specialized utilities for MIUI
Working with the command line can seem difficult for the untrained user. Fortunately, enthusiasts have created graphical shells for ADB, which greatly simplify the process. One of the most popular and secure programs is Universal Android Debloater (UAD).
This utility automatically identifies the connected device, lists all installed packages, and labels system applications as “safe to remove” or “dangerous.” You don’t need to remember packet names like com.android.chrome, and it will show you the clear name “Google Chrome.”
- 🖥️ Download the latest version UAD From the official GitHub repository and run the executable file.
- 📲 Connect the phone with the debugging enabled USB — The program will install the necessary drivers.
- 🗑️ In the list, find Chrome, select it and click the button "Uninstall selected." The program will create and execute the desired one. ADB-team.
The advantage of these programs is that you can accidentally remove a component that is necessary for Google Play Services to work, but UAD usually warns you about this in red, which reduces the risk of turning your smartphone into a brick or getting an unstable system.
⚠️ Note: Do not delete packets marked as "Unsafe" or "Recommended to keep" unless you know exactly what they are responsible for).
Possible problems and system recovery
After removing the system browser, you may find yourself in a situation where links from Telegram, Viber or WhatsApp stop opening.The Android operating system tries to call the default link handler that has been removed.In this case, you need to manually assign a new default browser.
Go to Settings → Applications → Application Management. Click on the menu (three dots) and select Default Apps or find Open Links. Select your new browser (like Firefox or DuckDuckGo) and set it as your primary browser. If you don't, the system may give an error or do nothing when you click on the link.
In rare cases, especially on older versions of MIUI, removing Chrome can disrupt news widgets or Google Discover feeds. If you notice strange behavior, the best solution is to reset the settings to factory settings, which will put all remote system applications back in place.
To recover without a complete reset, you can try reinstalling Chrome through the Google Play store or download it. APK-a file from a verified resource like APKMirror. ADB for user 0, the normal installation may not work and you will need an adb shell cmd package install-existing com.android.chrome command.