Standard Android applications are apps that the manufacturer installs on a smartphone by default. They often take up memory space, consume battery power, and run in the background even when you're not using them. Removing built-in applications can free up to 1-3 GB memory, speed up the system, and extend battery life.

However, not all applications can be deleted without consequences. Some of them are critical for stable operation Android, and their uninstallation can lead to failures or even bricking of the device. In this article we will look at safe methods of removal unnecessary standard apps - both without rootrights and with them, and also tell you which applications should not be touched.

The material is relevant for all modern versions of Android (from Android 10 to Android 15) and covers devices of popular brands: Samsung, Xiaomi, Huawei, Realme, Oppo and others. If your device runs on custom firmware (for example, LineageOS or Pixel Experience), some methods may not work - it depends on the policy of the modified system.

๐Ÿ“Š What brand of smartphone are you using?
Samsung
Xiaomi
Huawei
Realme/Oppo
Google Pixel
Other

1. Which standard applications can be deleted and which cannot

Before you start deleting, it is important to understand which apps safe to uninstalland which are better to disable or leave. Built-in applications are divided into three categories:

  • ๐Ÿ”„ System services โ€”critical components (for example, Android System WebView, Google Play Services). Removing them will result in the smartphone not working.
  • ๐Ÿ“ฑ Manufacturer's bloodware โ€”branded applications of the brand (Samsung Knox, Mi Browser, Huawei AppGallery). They can be removed, but sometimes this violates the warranty.
  • ๐ŸŽต Media and Utilities - calculators, notebooks, music players. Removing them is usually safe, but may remove functionality (for example, Google Podcasts or Samsung Music).

The table below shows a list of applications that most often removed usersand potential risks:

Application Can I delete? Possible consequences
Facebook, Instagram (pre-installed) โœ… Yes Loss of quick access to social networks (can be installed later from Play Market)
Samsung Knox, Mi Security โš ๏ธ Partially Proprietary security features may stop working (for example, Secure Folder)
Google Duo, Google Play Music โœ… Yes No critical consequences (replaceable on Google Meet i YouTube Music)
Android Auto, ARCore โŒ No Wireless communication functions with the car or AR applications may be disrupted
Branded launchers (One UI Home, MIUI Launcher) โŒ No The smartphone may stop loading or be unstable

Removing applications like com.android.vending (Google Play Market) or com.google.android.gsf (Google Services Framework) will lead to to complete inoperability of the device. If you are not sure of the purpose of the app, it is better to disable it (more on this in the next section).

โš ๏ธ Attention: On some devices (for example, Huawei without Google Mobile Services), deleting standard applications may block access to proprietary services, such as Huawei Mobile Cloud or AppGallery.

2. How to disable standard applications without uninstalling

If you do not want to risk system stability, but want to get rid of unnecessary apps, you can disable. This will stop background activity, hide icons from menus, and prevent automatic updates. The method works on all devices without rootrights.

Instructions for Android 12-15:

  1. Open Settings โ†’ Applications.
  2. Tap on three dots in the upper right corner and select Show system processes (on some firmware this item may be called Show all applications).
  3. Find the application you need (for example, Google Play Movie) and open it card.
  4. Click Disable (or Delete updatesif the disable button is inactive).
  5. Confirm the action in the window that appears.

On devices Samsung with a shell One UI the path may be slightly different:

Settings โ†’ Applications โ†’ [โ‹ฎ] โ†’ Special access โ†’ Disable applications

Disabled apps will not:

  • ๐Ÿ“ต Show in the application menu;
  • ๐Ÿ”„ Updated via Play Market;
  • ๐Ÿ”‹ Consume battery power in the background;
  • ๐Ÿ“ก Use mobile traffic or Wi-Fi.
โš ๏ธ Attention: On some devices (for example, Xiaomi s MIUI) disabling system applications may reset after firmware update. In this case, the procedure will have to be repeated.

Make a backup copy of important data

Check the list of disabled apps for compatibility

Write down application names for quick search

Make sure that the device has enough charge (at least 30%)

-->

3. Removing standard applications without root access (via ADB)

If disabling is not enough, you can remove unnecessary apps without obtaining root accessusing ADB (Android Debug Bridge). This method works on most devices, but requires connecting to a computer and enabling developer mode.

Advantages of the method:

  • ๐Ÿ”“ Does not require unlocking the bootloader;
  • ๐Ÿ›ก๏ธ Does not violate the warranty (if critical components are not deleted);
  • ๐Ÿ”„ Ability to restore the application via ADB.

Step-by-step guide:

  1. Enable developer mode:
    • Go to Settings โ†’ About phone.
    • Tap 7 times on the item Build number (or MIUI version on Xiaomi).
    • Return to the main menu settings - the item For developers.
  2. Activate USB debugging:
    • Go to Settings โ†’ System โ†’ For Developers.
    • Turn on the switch USB debugging.
    • Confirm the resolution in the window that appears.
  • Connect your smartphone to the PC and install ADB:
    • Download Platform Tools from the official website Android.
    • Unzip the archive to any folder (for example, C:\platform-tools).
    • Open the command line (Win + R โ†’ cmd) and go to the folder with ADB:
      cd C:\platform-tools
    • Check the device connection:
      adb devices

      If the smartphone is connected correctly, you will see its serial number. If not, install the drivers for your model.

    • Delete. unnecessary application: adb shell pm uninstall -k --user 0 package name command:
      adb shell pm uninstall -k --user 0 package name

      For example, to delete Google Play Cinema:

      adb shell pm uninstall -k --user 0 com.google.android.videos

    To find out package name desired application, use the command:

    adb shell pm list packages | grep "name"

    For example, to search for all applications with the word samsung:

    adb shell pm list packages | grep "samsung"

    Removing via ADB does not erase the application completely - it remains in the system partition, but becomes inaccessible for the current user. This allows you to restore it at any time with the same command, replacing uninstall with install-existing.

    ๐Ÿ’ก

    Before deleting, take a screenshot of the list of packages or save it to a text file. This will help you quickly restore applications if something goes wrong.

    4. root access

    If your device has rootrights (for example, through Magisk or SuperSU), you can remove system applications completelyby freeing up space in the partition /system. This method gives maximum freedom, but also maximum risks.

    To work you will need:

    • ๐Ÿ“ฑ A device with an unlocked bootloader and root;
    • ๐Ÿ’ป PC with installed ADB (or a file manager with support root, for example, Root Explorer);
    • ๐Ÿ”ง Data backup (in case of failure).

    Removal methods:

    Method 1: Via ADB with root

    adb shell
    

    su

    pm uninstall --user 0 package name

    For complete removal (along with cache and data):

    rm -rf /data/data/package name
    

    rm -rf /system/priv-app/package name

    rm -rf /system/app/package name

    Method 2: Through the file manager

    Use Root Explorer or FX File Explorer:

    1. Go to the folder /system/app or /system/priv-app.
    2. Find the folder with the name of the application to be removed (for example, com.android.browser).
    3. Delete the folder or rename it (add it at the end .bak).
    4. Reboot the device.

    Examples of packages that are safe to remove (tested on most firmware):

    • ๐ŸŽฌ com.google.android.videos (Google Play Movie);
    • ๐Ÿ“– com.google.android.apps.books (Google Play Books);
    • ๐ŸŽต com.google.android.music (Google Play Music);
    • ๐Ÿ“ก com.android.chrome (if you use another browser).
    โš ๏ธ Attention: Removing packages like com.android.phone (Phone), com.android.settings (Settings) or com.google.android.gms (Google Play Services) will lead to total inoperability devices and will require flashing.
    What to do if after removal the smartphone does not turn on?

    If the device is stuck on the logo or goes into bootloop, try:

    1. Go to recovery (usually Power + Volume Up) and make a wipe cache.

    2. Recover a deleted package via ADB in recovery mode:

    adb push package name.apk /system/app/
    

    adb shell chmod 644 /system/app/package name.apk

    3. If all else fails, reflash the device via Fastboot or Odin (for Samsung).

    5. Removing standard applications on devices of specific brands

    Smartphone manufacturers often block the removal of their branded applications. Below - specific instructions for popular brands.

    Samsung (One UI)

    On devices Samsung you can remove most Googleapplications and some branded utilities via ADBFor example:

    adb shell pm uninstall -k --user 0 com.sec.android.app.launcher

    However, deleting Samsung Knox (com.sec.knox) or Samsung Pay (com.samsung.android.spay) can disrupt the operation of Secure Folder and contactless payments.

    Xiaomi (MIUI)

    On Xiaomi the deletion blocking is especially strict. To bypass restrictions:

    1. Get root via Magisk (requires unlocking the bootloader).
    2. Use the module MIUI Debloater for Magiskwhich automatically removes unnecessary applications.

    List of packages safe to remove on MIUI:

    • ๐ŸŒ com.miui.browser (Mi Browser);
    • ๐Ÿ“ฆ com.xiaomi.midrop (Mi Drop);
    • ๐ŸŽฎ com.xiaomi.glgm (Game Turbo).

    Huawei (EMUI/HarmonyOS)

    On devices Huawei without Google Mobile Services removing standard applications can block access to AppGallery. It is only recommended to disable unnecessary apps through the settings.

    If root received, to remove use:

    adb shell
    

    su

    mount -o rw,remount /system

    rm -rf /system/app/package name

    rm -rf /system/priv-app/package name

    โš ๏ธ Attention: On Huawei s HarmonyOS (instead of Android) removal methods may not work due to the proprietary architecture of the system.
    ๐Ÿ’ก

    On devices with custom firmware (for example, LineageOS), most standard applications Google can be removed through the settings without ADB or root โ€”they are installed as normal user apps.

    6. How to restore deleted standard applications

    If after deletion you encounter problems (for example, proprietary functions stop working), applications can be restored. Methods depend on the removal method: Google Play Services or proprietary features), applications can be restored. The methods depend on the removal method:

    If deleted via ADB (without root)

    Use the command:

    adb shell cmd package install-existing package name

    Example for Google Play Cinema:

    adb shell cmd package install-existing com.google.android.videos

    If you deleted it from root

    You can restore the application:

    • ๐Ÿ”„ Via a backup copy (if you made a backup /system);
    • ๐Ÿ“ฅ By reinstalling the .apkfile manually (you need to download the original version for your firmware);
    • ๐Ÿ”ง Reflashing the device (as a last resort).

    To find the original .apk system application:

    1. Download the firmware for your model from the manufacturer's official website.
    2. Unpack it (usually an archive .zip or .tar).
    3. Find the file .apk in the folders system/app or system/priv-app.
    4. Transfer it back to the device via ADB:
      adb push package name.apk /system/priv-app/
      

      adb shell chmod 644 /system/priv-app/package name.apk

    If you are not sure of the correct actions, it is easier to do reset to factory settings (but this will delete all custom data!).

    7. Alternative methods: debloating without deleting

    If deletion seems risky, you can limit the influence of standard applications other methods:

    • ๐Ÿ›ก๏ธ Freezing through Titanium Backup or App Quarantine: Applications remain in the system, but do not work and are not updated.
    • ๐Ÿ”’ Limiting background activity: In the application settings, disable Background activity i Autostart.
    • ๐Ÿ“ต Blocking via firewall: Applications NetGuard or AFWall+ (requires root) can completely block Internet access for unnecessary apps.
    • ๐Ÿ”„ Use of custom firmware: Firmware like LineageOS or Pixel Experience go without unnecessary stuff bloatware.

    For devices Samsung exists utility Samsung Debloater Tool (for PC), which allows you to bulk disable or delete standard applications via ADB in semi-automatic mode. There are similar tools for other brands:

    • ๐Ÿ“ฑ Xiaomi ADB/Fastboot Tools โ€” for Xiaomi;
    • ๐Ÿค– Universal Android Debloater โ€”a universal tool;
    • ๐ŸŽ Huawei Debloater โ€”for devices Huawei (does not work on all models).

    These tools usually have a graphical interface and a list of safe ones to remove applications, which reduces the risk of errors.

    FAQ: Frequently asked questions about deleting standard applications

    Is it possible to delete Google Play Market?

    No, deleting com.android.vending (Google Play Market) will make it impossible to install and update applications. You can only disable its updates or use alternative stores (for example, Aurora Store).

    Why does it appear again after deleting an application?

    This happens due to the automatic restoration of system applications after a firmware update. To avoid this, disable automatic updates in settings Play Market or use Magiskmodules to block recovery.

    How do you know which application is safe to delete?

    Before deleting, check the purpose of the package on sites like APKMirror or Google Play. You can also search for information on thematic forums (for example, XDA Developers or 4PDA).

    Does deleting applications violate the warranty?

    Disabling applications through settings does not violate the warranty. Removing through ADB without root is also usually safe. However, unlocking the bootloader and getting rootrights will void the warranty on most devices.

    Is it possible to delete standard applications on the iPhone?

    On iPhone standard applications (Apple Music, Podcasts etc.) can only be hidden, but not completely deleted. To do this, hold your finger on the application icon and select Delete application (it will remain in App Library).