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).

๐Ÿ“Š Which system applications bother you the most?
Social networks (Facebook, Instagram)
Branded launchers (One UI, MIUI)
Duplicate services (two browsers, two stores)
Game centers (Game Launcher, Game Space)
Other

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 via Settings โ†’ 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:

  1. Open Settings โ†’ Applications.
  2. Click on the three dots in the upper right corner and select Show system ones.
  3. Find the application you need (for example, Google Play Music or Bixby).
  4. 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-tools from the official website).

Step-by-step guide:

  1. Enable on your smartphone Developer mode: go in Settings โ†’ About phone โ†’ Build number and press 7 times.
  2. Return to Settings โ†’ System โ†’ For Developers and activate USB Debugging.
  3. Connect the phone to the PC and select the mode File Transfer.
  4. Open Command Prompt (cmd on Windows) and go to the folder with platform-tools:
cd C:\platform-tools
  1. 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 Google
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:

  1. Root Explorer โ€” a file manager with access to /system. Delete APK-application file and folder /data/data/[package_name].
  2. Titanium Backup โ€”allows you to โ€œfreezeโ€ or completely remove system apps.
  3. 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:

  1. Install TWRP for your model (look for instructions at XDA Developers).
  2. Boot into recovery: turn off the phone, then press Power + Volume Up.
  3. Go to Advanced โ†’ File Manager.
  4. Find folder /system/priv-app or /system/app.
  5. Delete the folder with the unnecessary application (for example, Bixby).
  6. 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:

  1. Install the launcher from Google Play.
  2. Hold your finger on the desktop โ†’ Launcher settings.
  3. Find the option Hide applications and check unnecessary.

2. Replacing default applications

Android allows you to designate default applications. For example, you can:

  • ๐Ÿ“ง Replace Email with 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:

  1. Create a backup via TWRP or Titanium Backup.
  2. Check packages before deleting (use lists of safe packages for your model).
  3. Start by disablingnot deletion - this way you can get everything back.
  4. 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:

  1. Install APKapplication file manually (if it is not critical).
  2. Restore the backup via TWRP or Titanium Backup.
  3. Reset the settings to factory settings (Settings โ†’ System โ†’ Reset).
  4. Reflash the device via Odin (Samsung) or Fastboot.