Xiaomi smartphone owners often face the need to remove the pre-installed Mi Browser browser, an app that not only takes up space in memory but also regularly sends analytics to Kingssoft Cloud (according to research from Citizen Lab). Although MIUI does not allow you to remove system applications by standard methods, there are workarounds β from simple disabling to complete removal with ADB or root rights.
In this article, we will discuss 5 working ways to get rid of Mi Browser on Xiaomi, Redmi and POCO devices (including models from 2020-2026), as well as how to avoid typical errors when removing system applications. Particular attention will be paid to security - improper actions can lead to a loss of warranty or a "brick" of a device on MIUI 14+ firmware with a bootloader lock.
Why Mi Browser is Better to Remove: 3 Good Reasons
Before we go to the instructions, letβs understand why you should get rid of the standard browser at all:
- π Data collection without consent: Research shows that Mi Browser transfers your browsing history, device data, and even information about other installed applications to Kingssoftβs servers in China and Xiaomi, even if the user has disabled all permissions. This is confirmed by traffic analysis in tools like Packet Capture.
- π± Unnecessary system load: The app runs in the background, consuming up to 100-150 MB of RAM (according to Developer Options), and is regularly updated via Google Play, taking up space in memory.
- π« Intrusive advertising. Even when you turn off the personalization of ads in the settings MIUI, Mi Browser shows banners and pop-ups on the homepage and in the SERPs.
In addition, the browser duplicates the features of Google Chrome or Mozilla Firefox, which are more convenient for most users. For example, Mi Browser does not sync with a Google account, and extensions work unstable.
Method 1: Disable Mi Browser without removing (no root)
The safest method is to disable the app through the MIUI settings.This won't delete the browser files, but will stop it working and hide the icon from the menu. Suitable for all Xiaomi models, including the Redmi Note 12, POCO X5 and Mi 11.
- Open Settings β Applications β Application Management.
- In the search box, type Mi Browser (or com.android.browser for older versions of MIUI).
- Click on the app, then select Disable (or Remove Updates if the Disable button is inactive).
- Confirm the action in the pop-up window.
Once disabled, the browser icon will disappear from the menu and the background processes will stop. However, the application files will remain in memory (taking ~50-80 MB). To return the browser, just go to the same settings and click Enable.
βοΈ Preparing for Mi Browser shutdown
β οΈ Attention: On some firmware MIUI 14 (for example, on Xiaomi 13 Pro) disabling system applications can cause Google Play services to fail. If push notifications stop working after the disabling, return the browser to active state.
Method 2: Remove via ADB (without root but with PC)
If the shutdown isnβt enough, you can completely remove the Mi Browser using ADB (Android Debug Bridge), a method that doesnβt require root rights, but youβll need a computer with Xiaomi drivers installed and the ADB tool.
Advantages of the method:
- β Completely delete browser files (frees up to 100MB of memory).
- β Does not affect the warranty (unless the bootloader is unlocked).
- β Works on MIUI 12β14 (including global and Chinese firmware).
Instructions:
- Turn on Developer Mode on your phone: go to Settings β About Phone and click on MIUI Version 7 times.
- Return to Settings β Additional β For developers and activate Debugging over USB.
- Connect the phone to the PC, confirm the trust in the computer on the smartphone screen.
- Open the command prompt (CMD on Windows or Terminal on macOS/Linux) and type:
adb devices(Your device should be displayed. If not, install Xiaomi USB Drivers.)
adb shell pm uninstall --user 0 com.android.browserIf the command fails, try an alternative package:
adb shell pm uninstall --user 0 com.mi.globalbrowserOnce executed, the browser will be removed for the current user (without affecting system files), and to return it, you will need to reset your settings or manually install the APK.
What if the ADB canβt see the device?
Method 3: Removal with root rights (for advanced)
If your Xiaomi bootloader is unlocked and you have Magisk or another root manager installed, you can delete the Mi Browser permanently, including system files, which is suitable for users who are willing to risk the stability of the system.
Warning: Incorrect removal of system APK can cause a "brick" (inoperability) of the device, especially on the MIUI 14 dynamically partitioned (dynamic_partitions).
Instructions:
- Install a file manager with root support (such as Root Explorer or Mixplorer).
- Go to /system/app/MiBrowser or /system/priv-app/MiBrowser (the path may vary depending on the firmware).
- Remove the MiBrowser folder or rename it to MiBrowser_bak (in case of restoration).
- Reset the device.
An alternative way is to use ADB root access:
adb shell
su
mount -o rw,remount /system
rm -rf /system/app/MiBrowser
rm -rf /system/priv-app/MiBrowser
rebootβ οΈ Attention: On some firmware MIUI 13/14 removal APK This can cause a com.android.phone error. If it does, restore deleted files from backup or re-flash the device.
Method 4: Replacing the Mi Browser with the default alternative
If you do not want to delete the browser, but it constantly opens instead of your main browser (for example, when clicking on links in messages), you can reset the default application settings:
- Open Settings β Applications β Application Management.
- Click on the three dots in the top right corner and select App Preference Reset.
- Confirm the action.
- When you next open a link, select the browser you want (such as Chrome or Firefox) and mark Always.
You can also manually set the default browser:
- π For Google Chrome: Open the app, click on three dots β Settings β Browser by default.
- π¦ For Firefox: Settings β Make Firefox a default browser.
This wonβt remove the Mi Browser, but it will prevent it from running automatically. Note that some system applications (such as Mi Video) can still open links in Mi Browser β in this case, only complete removal will help.
Method 5: Remove via TWRP (for custom firmware)
If your Xiaomi has custom recovery (TWRP), you can remove the Mi Browser directly from it without having to resort to ADB or root.This method is suitable for devices with an unlocked bootloader and TWRP installed (for example, POCO F3 or Redmi K40 on LineageOS).
Step-by-step:
- Turn off your phone and press Volume Up + Power to enter TWRP.
- Select Advanced β File Manager.
- Go to /system/app/ or /system/priv-app/ and find the MiBrowser folder (or com.android.browser).
- Select the folder and press Delete (delete).
- Go back to the main TWRP menu and select Reboot β System.
If errors occur after the reboot (e.g. Android.process.acore fell), the browser was linked to other system services.
- π Restore deleted files from backup TWRP.
- π₯ Refuse the cleaning device Dalvik/Cache.
π‘
Before removing system applications via TWRP, always back up /system! This will allow you to quickly restore functionality if something goes wrong.
Table: Comparison of Mi Browser removal methods
| Method | Root is required. | PC required | Complete removal | Risk to the system | It's good for MIUI. |
|---|---|---|---|---|---|
| Shutdown | β No. | β No. | β No (files remain) | β οΈ Low. | 12β14 |
| ADB | β No. | β Yes. | β Yes, for the user) | β οΈ Medium. | 12β14 |
| Root removal | β Yes. | β No. | β Yes (full) | β High-pitched | 12-14 (risk of "brick") |
| TWRP | β Yes. | β No. | β Yes (full) | β High-pitched | 12β14 (for custom firmware only) |
| Replacement by default | β No. | β No. | β No. | β οΈ Low. | 12β14 |
For most users, the best option is ADB-Deletion (method 2) β it does not require root, but completely removes the browser for the current user. If you are not willing to risk, just disabling the application (method 1).
π‘
On devices with MIUI 14 and dynamic partitions (dynamic_partitions) removal APK It may cause the inability to update the firmware OTA. In this case, it is recommended to use a disconnect instead of a complete deletion.
Frequent Mistakes and How to Avoid Them
When you delete Mi Browser, users often face problems, and here are the most common ones and ways to solve them:
- π§ "Team team. ADB Not working": Check if the package is entered correctly (com.android.browser or com.mi.globalbrowser). MIUI 14 may need to first disable the application in the settings, and then use ADB.
- π΅ "After Deletion, the Internet is Lost: This Means Mi Browser Was Linked to System Services MIUI. Restore it through ADB: adb shell cmd package install-existing com.android.browser
- π "Browser is back after the update MIUI": System applications are restored when you update your firmware. To avoid this, disable auto updates in Settings β The phone. β Updating the system β Three points. β Settings β Auto-update.
- π¨ "Phone does not turn on after deletion": This is a critical error, meaning damage to the system partition.The solution is to flash the device through the Fastboot using the Mi Flash Tool (instructions are available on the forum 4PDA).
β οΈ Note: On Xiaomi devices with bootloader lock (for example, Redmi Note 11 on global firmware) try to get root or install TWRP Before any manipulation, check the status of the bootloader by the command: fastboot oem device-info If Device unlocked: false, unlock it officially through the Mi Unlock Tool.