Smartphones on Android often go on sale with dozens of pre-installed applications - from useful services Google to unnecessary blaster from the manufacturer. These apps take up memory space, drain battery power, and can monitor your activity. But deleting them is not so easy: most built-in applications are protected by the system and do not have a โDeleteโ button in the menu.
In this article we will look 5 proven methods get rid of unnecessary standard apps - from safe methods through settings to advanced techniques using ADB and root access. You will learn which applications can be removed without risk to the system, and which ones should not be touched, even if they seem useless. We will separately consider the features for smartphones Samsung, Xiaomi, Huawei and other popular brands.
Why you canโt just delete standard applications through the menu
Most built-in apps on Android belong to one of three categories:
- ๐ฑ System services โcritical components (for example,
Google Play ServicesorAndroid System WebView). Deleting them will lead to malfunctions of the smartphone. - ๐ Bloater from the manufacturer - unnecessary brand applications (for example, Samsung Knox, Mi Browser or Huawei AppGallery). They can be deactivated or deleted.
- ๐ Google applications โ YouTube, Duo, Google Podcasts and others. Some of them can be deleted, but some (for example,
Google Play Store) are not recommended to be touched.
Manufacturers block the removal of such apps for several reasons:
- Agreements with partners (for example, pre-installed games or services from telecom operators).
- Dependence of system functions on these applications (for example, Samsung Health can be associated with smartphone sensors).
- The desire to maintain a proprietary interface (for example, MIUI or One UI lose some functions when key components are removed).
โ ๏ธ Attention: Removing system applications without understanding their purpose can lead to loss of functionality of the camera, mobile network, or even complete inoperability of the device. Always check the name of the app before deleting!
Method 1: Deactivation through Android settings (without root)
The safest method is disable unnecessary applications. This won't free up memory, but it will stop them running in the background and hide them from the menu. Suitable for most smartphones Android 8.0 and newer.
Instructions:
- Open
Settings โ Applications(on some devices -Settings โ All applications). - Tap on the three dots in the upper right corner and select
Show system ones(orShow all applications). - Find an unnecessary application (for example, Google Play Music or Samsung Free) and open its page.
- Click
Disable(orDelete updatesif the button is active).
On some smartphones (for example, Xiaomi) instead of disabling there may be an option HideThis does not remove the app, but removes it from the list of applications.
| Brand | Path to application settings | Features |
|---|---|---|
| Samsung | Settings โ Applications โ Three dots โ Show system ones |
You can disable Samsung Free, Game Launcherbut do not touch Knox i Secure Folder. |
| Xiaomi | Settings โ All applications โ System |
Many applications MIUI (for example, Mi Browser) can be deleted through ADB. |
| Huawei | Settings โ Applications โ Applications (tab) |
The functionality of disabling is severely limited - many applications can only be hidden. |
โ ๏ธ Attention: On some devices (especially c Android 12+) after disabling system applications, functions like Always On Display or navigation gestures may disappear. Before disabling, check whether the application is associated with the options you need.
โ๏ธ Preparing to disable applications
Method 2: Uninstall via ADB (without root, but from a PC)
ADB (Android Debug Bridge) is a debugging tool that allows you to control your smartphone via a computer. With its help you can remove many standard applications without obtaining root access. The method works on most devices, but requires enabling USB debugging.
Step-by-step guide:
- Download ADB Tools (official package from Google) and unzip the archive to any folder on your PC.
- On your smartphone, enable
USB debugging:- Go to
Settings โ About phone โ Build numberand tap on it 7 times until the notification โYou have become a developerโ appears. - Go back to
Settings โ System โ For developersand enableDebug by USB.
- Go to
ADB open the command line (Shift + RMB โ Open the PowerShell window here).adb devices
If the device is listed, enter:
adb shell
package.name with the real package name):
pm uninstall -k --user 0 package.name
Example for Google Duo:
pm uninstall -k --user 0 com.google.android.apps.tachyon
To find the application package name, use the command:
pm list packages | grep 'keyword'
For example, to search for all applications Samsung:
pm list packages | grep 'samsung'
List of packages safe to remove
Here are some packages that can be removed on most devices (but always check their purpose!):
com.google.android.apps.tachyonโ Google Duocom.google.android.musicโ Google Play Music (outdated)com.samsung.android.app.spageโ Samsung Free (Bixby Home)com.miui.browserโ Mi Browser (Xiaomi)com.huawei.appmarketโ Huawei AppGallery
The full list depends on the phone model. Do not delete packages named android, google.android.gsf or settings!
Important: Command pm uninstall -k --user 0 removes the application only for the current user. After a factory reset or system update, it may return. To remove it completely, you will need root access.
If after deleting the application via ADB, it appears again after a reboot, try first disabling it in the settings and then deleting it via ADB. This will increase the chances of successful removal.
Method 3: Using third-party utilities (with and without root)
If you do not want to work with ADB, you can use specialized apps. They are divided into two categories:
- ๐ง Without root: Utilities like App Inspector or Package Disabler (for Samsung) allow you to disable system applications through a graphical interface. They work on the same principle as
ADB, but are easier to use. - ๐ ๏ธ With root: apps like Titanium Backup or System App Remover give full control over system files, including the ability to completely delete and backup.
Examples of popular utilities:
| Name | Root required? | Functions | Supported brands |
|---|---|---|---|
| Package Disabler Pro | โ No | Disable system applications, work via ADB | Samsung, LG, HTC |
| Debloater (for PC) | โ No | Removal via ADB with graphical interface | Any devices |
| Titanium Backup | โ Yes | Full removal, backup, freezing | Any devices with root |
| System App Remover | โ Yes | Removing system APK, clearing cache | Any devices with root |
Warnings when using third-party utilities:
- โ ๏ธ Some apps (especially c Play Market) may contain malicious code. Download only from trusted sources (for example XDA Developers or official sites).
- โ ๏ธ Utilities from root access can damage the system if you delete critical files. Always make a backup before mass deletion.
- โ ๏ธ On devices with MIUI or EMUI (Huawei), some utilities may not work due to manufacturer restrictions.
If you are not sure of your actions, start by disabling applications through settings or ADB. Complete removal of system files is an extreme measure that can lead to irreversible consequences.
Method 4: Removal using root access (for experienced users)
Receiving root access gives full control over the system, but voids the warranty and may disrupt the operation of some functions (for example, Google Pay or Samsung Pay). If you are willing to take the risk, this method allows uninstall any applications without restrictions.
Steps to remove from root:
- Get root access using Magisk or SuperSU (instructions depend on the phone model).
- Install a file manager with root support (for example, Root Explorer or Solid Explorer).
- Go to the folder
/system/appor/system/priv-app(system applications are stored here). - Find the folder with the name of the unnecessary application (for example,
SamsungFree) and delete it or rename it (add at the end.bak). - Reboot the device.
An alternative way is to use Terminal Emulator with the commands:
sumount -o rw,remount /system
rm -rf /system/app/FolderName
mount -o ro,remount /system
reboot
โ ๏ธ Attention: Deleting files from /system may lead to loss of device functionality if you delete dependent libraries or services. Always check that the folder you are deleting belongs to the desired application!
Advantages of the method:
- โ
Complete removal without traces (unlike
ADB, where the application can return after an update). - โ Ability to remove even those apps that are blocked at the kernel level.
Disadvantages:
- โ Risk "bricking" the device (turning into a "brick").
- โ Loss of warranty and possible problems with OTA updates.
- โ Some applications (for example, Google Play Services) cannot be completely removed - this will disrupt the system.
How to restore deleted system application?
If, after uninstalling from root, the device begins to work incorrectly, you can:
- Restore the backup copy (if you made a backup via Titanium Backup).
- Reflash the smartphone via Odรญn (for Samsung) or Fastboot (for other brands).
- Download the original firmware and extract the deleted APK file from it, then return it to its place through the root explorer.
Without a backup, recovery can be difficult - sometimes itโs easier to do a factory reset settings.
Method 5: Reset to factory settings with custom firmware
If you need to get rid of the blaster once and for all, you can install custom firmware (for example, LineageOS, Pixel Experience or HavocOS). These firmwares are devoid of unnecessary pre-installed applications and often work faster than standard ones.
Advantages of custom firmware:
- ๐ Pure Android without blaster.
- ๐ Regular security updates.
- ๐ง Advanced settings and optimizations.
Cons:
- โ ๏ธ Requires bootloader unlocking (on some devices this resets data).
- โ ๏ธ Possible bugs (for example, a non-working camera or NFC).
- โ ๏ธ Loss of warranty and functions like Samsung DeX or Mi Share.
Installation instructions (briefly):
- Unlock the bootloader (for Xiaomi โ via Mi Unlock Tool, for Samsung โ via
OEM Unlockin the developer settings). - Install custom recovery (TWRP or OrangeFox).
- Download firmware (for example, from the website) data-i="275">Not all devices support custom firmware. Before installing, check compatibility on the forums LineageOS) And GApps (if Google services are needed).
- Flash the firmware through recovery, then GApps And Magisk (for root).
โ ๏ธ Attention: Not all devices support custom firmware. Before installing, check compatibility on the forums XDA Developers or 4PDA. Incorrect firmware can turn your phone into a brick!
What applications can be used? which ones cannot be deleted
Not all standard apps are equally safe to delete. Below is a list of categories with recommendations.
| Category | Examples | Can I delete? | Risks |
|---|---|---|---|
| Google Services | Google Duo, Google Podcasts, Google Play Music | โ
Yes (except Google Play Services and Google Services Framework) |
Loss of functionality of some applications (for example, Gmail may stop synchronize). |
| Branded blaster | Samsung Free, Mi Browser, Huawei AppGallery | โ Yes | Minimal (access to branded brand services may be lost). |
| System utilities | Calendar, Clock, FM radio | โ ๏ธ Partially (can be disabled, but not deleted) | Widgets or quick settings may stop working. |
| Critical services | Android System WebView, Google Play Services, Settings |
โ No | System failure, inability to load or loss of network. |
| Operator applications | MTS Music, Beeline TV, MegaFon Services | โ Yes | No risks (except for loss of access to bonus operator services). |
How to check whether the application can be deleted:
- Look for information about it on forums (XDA, 4PDA).
- See what permissions it asks for in
Settings โ Applications โ Permissions. - Disable it for a day and check if there are any glitches.
Absolutely not delete:
com.android.phoneโresponsible for the mobile network.com.android.settingsโsystem settings.com.google.android.gmsโ Google Play Services (most applications will not work without it).androidorsystemin the package name.
If you are not sure of the purpose of the application, it is better to disable it rather than delete it. Most problems after removing system apps can only be solved by flashing it.
What to do if, after deleting the application, the phone begins to work incorrectly
If you uninstalled a critical application and encountered:
- ๐ Cyclic reboot โthe phone turns on, shows the logo and turns off again.
- ๐ต Network loss โdoes not pick up mobile data or Wi-Fi.
- โ๏ธ Interface failures โsettings do not open, icons disappear.
Here's what you can do:
1. Restoring via backup
If you made a backup via Titanium Backup or TWRP, restore the deleted application:
adb shell
pm install -r /path/to/file.apk
2. Flashing through recovery
If the phone turns on, but is unstable:
- Boot into TWRP (hold
Power + Volume upwhen turning on). - Select
Mount โ System. - Connect your phone to the PC and copy the deleted
.apkfile to the folder/system/appor/system/priv-app. - Set the correct rights (for example,
644or755). - Reboot the device.
3. Full reset via Fastboot
If the phone does not turn on:
- Download the original firmware for your model.
- Boot into mode
Fastboot(holdPower + Volume Down). - Flash the firmware using the command:
fastboot flash system system.img(the exact commands depend on the device).
โ ๏ธ Attention: If If you are not sure of your actions, contact the service center. Incorrect firmware can permanently damage the device!
FAQ: Frequently asked questions about deleting standard applications
Can Google Play Services be removed?
No, this is a critical service for most applications. Removing it will lead to malfunctions Play Market, Gmail, YouTube and other apps that depend on Google services. The maximum that can be done is to disable automatic updating via Settings โ Applications โ Google Play Services โ Three dots โ Uninstall updates.
Why does it come back after updating after deleting an application via ADB?
Command pm uninstall -k --user 0 deletes the application for the current user only. When updating the system, Android can restore deleted apps. To avoid this, you need to either block updates for a specific application, or use root access to completely remove files from /system.
How to find out which application is responsible for a specific function (for example, Always On Display)?
Use the utility Package Name Viewer (available in Play Market) or ADB command:
dumpsys package | grep "keyword"
For example, to search for an application related to Always On Display on Samsung, enter:
dumpsys package | grep "always"
You can also search for information on thematic forums based on your phone model.
Will Samsung Pay work after deleting system applications?
Most likely not. Samsung Pay depends on several system services, including Knox and Samsung Pay Framework. Removing or disabling them will lead to errors when launching the application. If this feature is important to you, do not touch applications with the name samsung or knox in the package.
Is it possible to delete standard applications on Android Go?
On devices with Android Go (for example, Nokia 1 or Samsung Galaxy J2 Core) the ability to remove system apps is very limited. Most built-in applications cannot even be disabled through settings. The only option is to use ADB, but even there many packages are protected from deletion. Custom firmware for Android Go are extremely rare.