Built-in browser on Android - like an annoying neighbor: always at hand, but rarely needed. Google Chrome, Samsung Internet or proprietary shells from Xiaomi/Huawei take up memory, show ads in notifications and sometimes even block the installation of alternatives. The worst thing is that the system persistently returns them to the โdefaultโ status after each update.
In this article - four proven ways to get rid of the standard browser, including methods for devices without root access and advanced tricks with ADB. We'll look at how to not just hide an application, but completely remove it from the system (where possible), roll it back to the factory version, or at least prevent it from automatically becoming the default browser. All instructions are relevant for Android 10โ14, but taking into account the features of firmware from different manufacturers.
Why you canโt just delete the default browser
On a clean one Android (for example, on Pixel or Nexus) browser Chrome is a system application. This means that:
- ๐ It cannot be deleted using standard means - the "Delete" button in the application menu will be inactive.
- ๐ Even if you disable updates via
Google Play, the browser core will remain in the system. - ๐ฑ Manufacturers (for example, Samsung or Xiaomi) often build their browsers into the firmware, tying them to proprietary services.
Moreover, starting from Android 10Google has tightened the rules for system applications. Now even a shutdown via Settings โ Applications can lead to disruptions in the operation of other services (for example, Google Pay or Assistant). But there are workarounds.
Method 1: Disabling through Android settings (without root)
The most A safe method is not to delete the browser, but Deprive it of the "default" status and turn off background activity. This will not free up memory, but will stop the automatic opening of links in an unnecessary application.
Instructions:
- Open
Settings โ Applications. - Find the browser in the list (for example Chrome or Samsung Internet) and tap on it.
- Select
DefaultโClear default settings. - Return to the main application menu and click
Disable(if the option is active). - For the full effect, go to
Permissionsand disable access to contacts, location and storage.
โ ๏ธ Attention: On some devices (for example, Huawei or Honor), disabling the system browser may disrupt the functionality of branded widgets or the application store. Before proceeding, check whether the firmware uses the browser to display web content in other applications (for example, Weather or News).
โ๏ธ Preparation to disable the browser
Method 2: Uninstalling updates and rolling back to the factory version
If the browser was pre-installed by the manufacturer, but was later updated via Google Play, you can return it to the original version. This will reduce the space occupied and remove unnecessary functions (for example, advertising modules). in Mi Browser).
How to do:
- Go to
Settings โ Applications โ [Browser name]. - Tap on the three dots in the upper right corner and select
Delete updates. - Confirm the action. The system will return the application to the version that was at the time of purchase of the device.
- Disable automatic updating for this application in
Google Play.
| Browser | Original size (MB) | Size after updates (MB) | Is it possible to rollback |
|---|---|---|---|
| Google Chrome | ~50 | 120โ180 | Yes |
| Samsung Internet | ~30 | 80โ110 | Yes |
| Mi Browser (Xiaomi) | ~25 | 70โ90 | Yes, but with restrictions |
| Huawei Browser | ~40 | 90โ130 | No (at EMUI 12+) |
๐น Important: On devices with Android 12 and newer, rolling back updates may require confirmation via Google Play Protection. If the system asks for a password for your account, but you donโt remember it, use Access recovery.
After rolling back updates, clear the browser cache manually via Settings โ Storage โ Cache. This will free up an additional 50โ200 MB.
Method 3: Uninstall via ADB (for experienced users)
If the previous methods did not help, and root access y you are gone, remains ADB (Android Debug Bridge). This tool allows you to remove system applications without completely unlocking the bootloader. Minus: after resetting the settings or updating the firmware, the browser may return.
Step-by-step guide:
- Enable
USB debugginginSettings โ About phone โ Build number(tap 7 times, then return toSettings โ System โ For developers). - Connect your phone to the PC and install ADB drivers.
- Open the command line (
cmd) and enter:
adb devices
(The name of your device should appear.)
- Find out the browser package name:
adb shell pm list packages | grep browser
Examples of package names:
com.android.chromeโ Google Chromecom.sec.android.app.sbrowserโ Samsung Internetcom.miui.browserโ Mi Browser
- Uninstall the application (replace
[package.name]with the real name):
adb shell pm uninstall -k --user 0 [package.name]
โ ๏ธ Attention: On some firmware (for example, ColorOS from Oppo), deleting system applications via ADB may lead to cyclic rebootBefore experiments, create a backup via TWRP or standard means. Android.
What to do if ADB does not see the device?
1. Check if USB debugging is enabled in the developer options.
2. Install original drivers from the manufacturer (not universal ones).
3. Try another USB cable (preferably the original one).
4. Restart your PC and phone.
5. At the command line, enter adb kill-server, then adb start-server.
Method 4: Complete removal with root access
If you have root access, you can delete the browser permanently - along with its cache, data and updates. Any file manager with root support is suitable for this (for example, Root Explorer or FX File Explorer).
Action algorithm:
- Open the file manager and go to
/system/appor/system/priv-app. - Find the browser folder (names may vary):
ChromeorWebViewGoogleSBrowser(Samsung)BrowserorMiuiBrowser(Xiaomi)
.bak).Settings โ Applications.๐น Warning: Deleting system APK files may disrupt the operation of WebView the component that is responsible for displaying web pages in other applications (for example, in VK or Telegram). If, after removing the browser, applications begin to crash, install Google WebView from Google Play manually.
Before deleting system files create a backup via TWRP or Titanium Backup. This will allow you to restore your device in case of failure.
How to prevent the browser from becoming the default application
Even after being disabled or deleted, the browser may be activated again after a system update. To avoid this:
- ๐ต Disable background activity:
- Open
Settings โ Applications โ [Browser] โ Battery. - Select
Limit background activity.
- Open
- ๐ Disable automatic updates:
- Run
Google Play. - Find the browser in the list of applications.
- Tap on the three dots โ
Disable auto-update.
- Run
adb shell cmd appops set [package.name] DEFAULT_BROWSER ignore
This will block the ability to become the default browser at the system level.
๐น Tip: If you use Nova Launcher or another alternative launcher, you can hide the browser icon from the application menu. This will not physically remove it, but will make it less noticeable.
Frequent problems and solutions
When working with system applications, users encounter common errors. Here's how to fix them:
| Problem | Cause | Solution |
|---|---|---|
| Browser returns after update | Firmware restores system APKs | Disable automatic OS updates or use Magisk to block components |
| WebView does not work in other applications | The system web page renderer has been removed | Install Google WebView or Android System WebView from Google Play |
ADB gives an error DELETE_FAILED_DEVICE_POLICY_MANAGER |
Device policy blocks changes | Disable Device management in Google account settings |
| The phone does not turn on after deleting the browser | Critical dependence of the firmware on the system APK | Recover deleted files via TWRP or reflash the device |
โ ๏ธ Attention: On devices With Android Enterprise (corporate phones), an attempt to remove system applications may result in the Device blocking administrator. Before experiments, check the status of the device in Settings โ Google โ Enterprise account.
FAQ: Answers to popular questions
You can Is it possible to remove Chrome on Samsung smartphones?
On most devices Samsung the browser Chrome is a system one, but it can be disabled via Settings โ Applications. Complete removal is only possible with root access or via ADB. However Samsung Internet it is easier to remove - it can be uninstalled as a regular application if it was installed as an update.
Why did links in Telegram stop opening after removing the browser?
The reason is that many applications (including Telegram, VK, Instagram) are used WebView to display web content. If you removed the system browser that was responsible for WebView, install Google WebView from Google Play or recover deleted files.
How to return the default browser if I made a mistake?
If the browser was disabled:
- Go to
Settings โ Applications โ Disabled. - Find the browser and click
Enable.
If deleted via ADB or root:
- Connect to your PC and run:
adb shell cmd package install-existing [package.name]
Or restore deleted files from a backup.
Will Google Pay work if I uninstall Chrome?
No, Google Pay depends on Google Play Serviceswhich in turn use components Chrome for device verification. If you uninstall your browser, Google services may no longer work correctly. We only recommend disabling Chrome, but not deleting it completely.
Is it possible to remove the browser on Android Go?
On devices with Android Go (for example, Nokia 1 or Samsung Galaxy J2 Core) The browser Chrome Go is a critical component. It cannot be removed without root, and even with root it can cause the system to become unusable. The maximum that can be done is to disable updates and limit background activity.