Owners of Android devices often encounter a problem built-in applications, which take up memory, consume battery power and are not deleted using standard methods. Smartphone manufacturersโ Samsung, Xiaomi, Huawei and othersโinstall dozens of preloaded apps, many of which duplicate functions or are completely useless. For example, Google Duo on devices with MIUI, Bixby on Galaxy, or Huawei AppGallery on smartphones without Google services.
Removing such applications is not a trivial task. System apps are integrated into the firmware, and their forced removal can lead inoperability of individual OS functionsto, for example, malfunctions of the camera, Bluetooth, or even a complete โbrickingโ of the device. However, there are proven methods that allow you to get rid of unnecessary software with minimal risks. In this article we will analyze 5 working methods from the safest (disabling and hiding) to radical (deletion via ADB and custom recovery).
Why can't you just delete system applications through settings
Android differentiates apps into three categories:
- ๐ฑ User - installed from Google Play or
APKfiles. They are removed in the standard way viaSettings โ Applications. - ๐ง System (built-in) โpreinstalled by the manufacturer. They cannot be removed without additional tools, but you can disable or hide.
- ๐จ Critical system - OS kernel, Google services, drivers. Removing them will lead to device inoperability.
When you try to delete a built-in application through the standard Android menu, you will see a gray "Delete" button or the message "Application disabled." This is due to the fact that system files are stored in a protected section, where a regular user does not have access. Even if you get APK-files are stored in a protected section /system, where the average user does not have access. Even if you get root access, removing some components may disrupt the operation:
- ๐
com.android.phoneโresponsible for phone calls; - ๐ถ
com.android.bluetoothโcontrols the Bluetooth module; - ๐
com.android.server.telecomโcommunication with the operator.
Manufacturers also integrate their services into the system. For example, on Xiaomi removal com.miui.securitycenter will lead to the disappearance of the security menu, and on Samsung deletion com.sec.android.app.launcher will make it impossible to access the desktop.
Before any manipulations with system applications, create a backup copy of your data. Use Titanium Backup (requires root) or built-in tools like Samsung Smart Switch.
Method 1: Disabling system applications (without root)
The safest method is disablementrather than uninstalling. A disabled application:
- โ Will not consume the battery;
- โ Will not receive updates;
- โ Will not appear in the menu;
- โ But will remain in memory device.
Instructions:
- Open
Settings โ Applications. - Click on the three dots in the upper right corner and select
Show system ones. - Find the application you need (for example,
Google Play MusicorBixby). - Click
DisableโDisable the application.
On some firmware (for example, EMUI from Huawei), the disable option can be hidden. In this case, it will help ADB (more on this below). Disabled applications can be returned at any time through the same menu.
What to do if the "Disable" button inactive?
On some devices (for example, Samsung c One UI 5+), the manufacturer blocks the disabling of critical services. In this case, only deletion via ADB or obtaining root access will help.
Method 2: Uninstall via ADB (without root, but from a PC)
Android Debug Bridge (ADB) โa debugging tool that allows you to manage the device via the command line. It can be used to remove most built-in applications without obtaining root access, but requires a connection to a computer.
What you will need:
- ๐ป Computer with Windows, macOS or Linux;
- ๐ฑ USB cable (preferably original);
- ๐ง Installed drivers for your device;
- ๐ฆ ADB and Fastboot (download
platform-toolsfrom the official website).
Step-by-step guide:
- Enable on your smartphone
Developer mode: go inSettings โ About phone โ Build numberand press 7 times. - Return to
Settings โ System โ For Developersand activateUSB Debugging. - Connect the phone to the PC and select the mode
File Transfer. - Open Command Prompt (
cmdon Windows) and go to the folder withplatform-tools:
cd C:\platform-tools
- Check the device connection:
adb devices
If the device is displayed, enter the command to remove (for example, for Google Duo):
adb shell pm uninstall -k --user 0 com.google.android.apps.tachyon
List of popular packages to remove:
| Application | Package name | Manufacturer |
|---|---|---|
| Google Duo | com.google.android.apps.tachyon |
|
| Bixby (Samsung) | com.samsung.android.bixby.agent |
Samsung |
| Mi Browser | com.android.browser |
Xiaomi |
| Huawei AppGallery | com.huawei.appmarket |
Huawei |
| Facebook (built-in) | com.facebook.system |
Meta |
โ ๏ธ Attention: Removing some packages (for example com.google.android.gsf) may break operation Google Play Services, which will lead to to errors in other applications. Always check the package name before uninstalling!
Install drivers for your device|Download platform-tools and unpack|Enable USB debugging|Check the connection using the adb devices command|Create a backup copy of your data-->
Method 3: Uninstall using root access
If you are willing to take the risk root access will open full control over the system. With its help, you can delete any applications, including those that are blocked for ADB. Popular tools for getting root:
- ๐ ๏ธ Magisk - the safest method (does not break
SafetyNet); - ๐ SuperSU - outdated, but still working option;
- ๐ฑ KingRoot - not recommended due to the risk of malware.
After to get root, use:
- Root Explorer โ a file manager with access to
/system. DeleteAPK-application file and folder/data/data/[package_name]. - Titanium Backup โallows you to โfreezeโ or completely remove system apps.
- SD Maid โcleanses residual files after uninstallation.
โ ๏ธ Attention: Removing critical components (for example, com.android.server.telecom) can lead to network loss or cyclic reboot devices Before experiments. safe to remove packages for your model!
Root access will void the warranty and may disrupt the operation of banking applications (due to the SafetyNet trigger). Use Magisk with the module Universal SafetyNet Fixto bypass the restrictions.
Method 4: Removal via custom recovery (TWRP)
TWRP (Team Win Recovery Project) is an alternative recovery that allows you to install firmware, create backups and manage system files To remove applications. via TWRP:
- Install
TWRPfor your model (look for instructions at XDA Developers). - Boot into recovery: turn off the phone, then press
Power + Volume Up. - Go to
Advanced โ File Manager. - Find folder
/system/priv-appor/system/app. - Delete the folder with the unnecessary application (for example,
Bixby). - Restart the device.
Advantages of the method:
- โ Does not require permanent root access;
- โ Allows you to restore deleted files via backup;
- โ Works even if the OS does not boot.
โ ๏ธ Attention: Incorrect deletion of files in TWRP may lead to "briku" (inoperability) of the device. Always create a backup copy of the partition /system before making changes!
Method 5: Alternatives to deletion - hiding and replacing
If the risks of deleting you frightening, consider alternative methods:
1. Hiding through the launcher
Launchers like Nova Launcher or Apex Launcher allow you to hide applications from the menu without deleting them. To do this:
- Install the launcher from Google Play.
- Hold your finger on the desktop โ
Launcher settings. - Find the option
Hide applicationsand check unnecessary.
2. Replacing default applications
Android allows you to designate default applications. For example, you can:
- ๐ง Replace
Emailwith Gmail or FairEmail; - ๐ Replace your proprietary browser with Chrome or Firefox;
- ๐ท Replace the standard camera with Google Camera (if supported).
3. Using Package Disabler
Applications like Package Disabler Pro (requires ADB or root) allow you to bulk disable system components without removing them. This is safer than manual intervention in the system.
Risks and how to avoid them
Removing system applications is always a compromise between freeing up memory and stability of the device. Main risks:
- ๐ Cyclic reboot โ if you delete critical services;
- ๐ต Network loss โwhen removing modem-related components;
- ๐ Bootloader lock โon some devices (Sony, LG);
- ๐ก๏ธ Problems with SafetyNet - if you are using root (banking applications will not work Google Pay).
How to minimize risks:
- Create a backup via
TWRPor Titanium Backup. - Check packages before deleting (use lists of safe packages for your model).
- Start by disablingnot deletion - this way you can get everything back.
- Use Magisk instead of permanent root - you can disable it if necessary.
โ ๏ธ Attention: On devices with Dynamic Partition (Android 10+) deleting system applications can lead to errors when updating the OS. Before updating the firmware, it is recommended to restore all deleted packages.
What to do if the application returns after deletion?
Some system applications are restored after updating the OS:
1. Freeze the package. via Titanium Backup or ADB (pm hide).
2. Disable automatic updating of system applications in Google Play.
3. Use Magisk with the module App Systemizerto transfer the application from /system v /data.
FAQ: Frequently asked questions about deleting system applications
Is it possible to delete Google Play Services?
โ No, this will crash most applications, including Google Play. Maximum - you can disable auto-updates through Settings โ Applications โ Google Play Services โ Notifications โ Disable updates.
How to find the application package name?
Use the application App Inspector or command adb shell pm list packages | grep "keyword". For example, to search for all packages with facebook:
adb shell pm list packages | grep facebook
Will deleted apps come back after a factory reset?
โ
Yes, a factory reset will restore all system apps. If you deleted them via ADB with the flag --user 0, they will not return until the next OS update.
Is it possible to delete system applications on the iPhone?
โ No, iOS does not provide such capabilities without jailbreakwhich violates the warranty and security of the device.
How to restore a deleted system application?
Recovery methods:
- Install
APKapplication file manually (if it is not critical). - Restore the backup via
TWRPor Titanium Backup. - Reset the settings to factory settings (
Settings โ System โ Reset). - Reflash the device via Odin (Samsung) or Fastboot.