The application YouTube is pre-installed on most smartphones Android, and not all users need it. Some people want to free up space in their memory, others want to get rid of intrusive advertising, and others simply donโ€™t watch videos online. But hereโ€™s the problem: standard deletion through the app menu often does not work - the โ€œDeleteโ€ button is inactive, and the system only offers โ€œDisableโ€ or โ€œUninstall updates.โ€

In this article we will look at all possible ways to delete YouTube devices - from basic to advanced, including methods for root users and owners of phones with custom firmware. We will also tell you how to avoid common mistakes that can lead to system failures, and what to do if the application returns after a reboot. Android-devices - from basic to advanced, including methods for root users and owners of phones with custom firmware. We will also tell you how to avoid common mistakes that can lead to system failures, and what to do if the application returns after a reboot.

Why YouTube cannot be deleted in the standard way?

The fact is that YouTube on most smartphones is a system application. Manufacturers (for example, Samsung, Xiaomi, Huawei) enter into partnership agreements with Google, and a number of services (including YouTube, Google Play Music, Duo) are installed in the /systemsection, which is protected from changes without superuser rights (root).

Even if you see the โ€œDeleteโ€ button in the application menu, it often only leads to:

  • ๐Ÿ”„ Removing updates โ€”return to the factory version of the application (without losing the main files).
  • โš™๏ธ Disabling โ€”hiding the icon and stopping the background of processes, but the files remain in memory.
  • ๐Ÿ—‘๏ธ Clearing the cache/data โ€”freeing up space, but the application itself does not go away.

To completely erase YouTube from your phone, additional actions will be required - from using ADB to obtaining rootrights. But before you move on to radical measures, check if one of the simple methods is right for you.

๐Ÿ“Š Why do you want to delete YouTube?
Free up memory space
Get rid of ads
I donโ€™t use the application
Other

Method 1: Disabling YouTube (without deleting files)

If your goal is to simply hide the application and stop it running in the background, it is enough disable YouTube through the settings. This method does not require superuser rights and is suitable for all devices. data-i="72">Applications and notifications Android 6.0+.

Instructions:

  1. Open Settings โ†’ Applications (or Apps and notifications).
  2. Find YouTube in the list (you can use the search).
  3. Click on the three dots in the upper right corner and select Disable.
  4. Confirm the action in the appeared window.

After disconnecting:

  • ๐Ÿ“ฑ The application icon will disappear from the main screen and menu.
  • ๐Ÿ”„ Background processes YouTube will stop working.
  • ๐Ÿ“ฅ Updates for the application will no longer be installed.
โš ๏ธ Attention: On some firmware (for example, MIUI from Xiaomi) a disabled application can be activated again after a system update. To avoid this, block automatic updating YouTube v Google Play.

โ˜‘๏ธ Preparing to disable YouTube

Done: 0 / 3

Method 2: Uninstall updates and reset to factory version

If YouTube has updated and now takes up too much space (for example, 200+ MB instead of the original 50 MB), you can return it to the factory version. This won't remove the app completely, but it will reduce the space it takes up.

How to do it:

  1. Go to Settings โ†’ Applications โ†’ YouTube โ†’ Storage.
  2. Click Uninstall updates (or Reset to factory settings).
  3. Confirm the action.

After reset:

  • ๐Ÿ“‰ The application size will be reduced to the original size (usually 30-70 MB).
  • ๐Ÿ”„ The functionality will return to the version pre-installed on the phone.
  • ๐Ÿšซ New updates will not be installed automatically (if you block them in Google Play).
Action Result Are root access required?
Disable YouTube The icon is hidden, processes are stopped No
Removing updates Reset to factory version, saving space No
Removal via ADB Full removal for the user (files remain in the system) No
Removal with root access Complete erasure of all application files Yes
โš ๏ธ Attention: On some devices (for example, Huawei without services Google) YouTube may be part of a package com.google.android.gm or com.google.android.apps.youtube.music. Removing such packages may cause problems with other services. Google.

Method 3: Removing YouTube via ADB (without root)

If shutting down and resetting is not enough, you can delete YouTube for the current user using Android Debug Bridge (ADB). This method does not require rootrights, but will require connecting the phone to the computer.

Step-by-step guide:

  1. Download and install ADB Tools on PC.
  2. Enable USB debugging on the phone:
    Settings โ†’ About phone โ†’ Build number (press 7 times)
    

    Settings โ†’ System โ†’ For developers โ†’ USB debugging

  3. Connect your phone to the PC and confirm permission to debug.
  4. Open the command line (or Terminal on Mac/Linux) and enter:
    adb devices

    Make sure that your device is shown in the list.

  5. Run the command to remove YouTube:
    adb shell pm uninstall -k --user 0 com.google.android.youtube

What will happen after the command is executed:

  • ๐Ÿ—‘๏ธ The application YouTube will be removed for the current user (but will remain in system).
  • ๐Ÿ”„ After resetting the phone to factory settings YouTube will return.
  • ๐Ÿ“ฑ The icon will disappear, and an attempt to open links to YouTube will redirect to the browser.
๐Ÿ’ก

If the command is not worked, try replacing com.google.android.youtube with com.google.android.apps.youtube.music โ€”on some devices the package is called differently.

Method 4: Complete removal with root access

If you have rootaccess, you you can completely erasing YouTube, including all its files from the system partition. This method is suitable for experienced users, since incorrect actions can lead to system crash.

Instructions:

  1. Install a file manager with support root (for example, Root Explorer or Solid Explorer).
  2. Go to the folder /system/app/ or /system/priv-app/.
  3. Find folders with names:
    • YouTube
    • YouTubeMusic
    • com.google.android.youtube-1 (or similar)
  • Delete these folders or rename them (for example, adding at the end .bak).
  • Reboot the phone.
  • Alternative method via Terminal Emulator:

    su
    

    mount -o rw,remount /system

    rm -rf /system/app/YouTube

    rm -rf /system/priv-app/YouTube

    reboot

    โš ๏ธ Attention: Removing system applications may disrupt the operation of Google Play Services or other services. Before deleting, do backup copy (backup) via TWRP or Titanium Backup.
    What to do if other applications stop working after deleting YouTube?

    If after deletion YouTube stopped opening Google Play Store, Gmail or other services, which means you deleted the dependent package. Restore the deleted files from a backup or run the command:

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

    This will reinstall Google Play Services and may return system performance.

    Method 5: Installing custom firmware without YouTube

    The most radical, but also the most effective method is install alternative firmwarein which YouTube and other services Google are absent by default. Popular options:

    • ๐Ÿ“ฑ LineageOS - clean Android without pre-installed applications.
    • ๐Ÿ›ก๏ธ GrapheneOS - firmware with an emphasis on security and privacy.
    • ๐Ÿ”ง CalyxOS - optimized for data protection, without Google Services.

    Advantages of this method:

    • ๐Ÿงน Complete absence YouTube and other unnecessary applications.
    • ๐Ÿ”’ Ability to choose which services Google to install.
    • โšก Often better performance compared to stock firmware.

    Disadvantages:

    • โš ๏ธ Risk loss of warranty (on most devices).
    • ๐Ÿ”ง Requires technical skills (unlock bootloader, installation TWRP).
    • ๐Ÿ“ฑ Not all phone functions can work (for example, NFC or the camera on some firmware).
    ๐Ÿ’ก

    Custom firmware is the only way to get rid of YouTube and other system applications without the risk of them reappearing after updates.

    What to do if YouTube returns after being deleted?

    If you deleted YouTube via ADB or disabled it, but after updating the system the application appears again, the problem is automatic recovery of system applications. Here's how to fix it:

    Ways to prevent the return:

    • ๐Ÿ”„ Turn off automatic updating of system applications:
      Settings โ†’ Google โ†’ Automatic application updates โ†’ Turn off
    • ๐Ÿ“ต Block YouTube installation via Google Play:
      1. Open Google Play โ†’ find YouTube.
      2. Click on the three dots โ†’ Remove from the list of updates.
  • ๐Ÿ›ก๏ธ Use Package Disabler (requires root or ADB):
    • Applications like Package Disabler Pro or Bloatware Remover can block recovery YouTube.
  • If nothing helps, consider the option of disabling Google Play Services (but this may disrupt the operation of other applications that depend on services Google).

    FAQ: Frequently asked questions about deleting YouTube from Android

    Is it possible to delete YouTube without a computer?

    Yes, but with limitations:

    • Without rootrights, you can only disable or uninstall updates.
    • With root-rights you can use applications like Titanium Backup or System App Remover for complete removal.
    Why, after deleting YouTube via ADB, does it still open in the browser?

    This is normal behavior When. you delete the application via ADB command pm uninstall --user 0, it disappears only for the current user. Links to YouTube will still be redirected to the browser, since the system recognizes them as web addresses.

    To avoid this, install an alternative application for watching videos. (for example NewPipe) and make it the default application for links YouTube.

    Is it possible to remove YouTube on Samsung phones with One UI?

    On devices Samsung with iOS One UI YouTube often built into package com.sec.android.app.samsungapps or com.google.android.gm. Complete removal without rootrights is impossible, but you can:

    • Disable the application (see Method 1).
    • Delete updates (see Method 2).
    • Use ADB to uninstall for the current user (see Method 3).

    On some models (for example, Galaxy S22 and newer) Samsung blocks the removal of system applications even via ADB.

    Will YouTube Premium work if you delete the regular application?

    No. YouTube Premium is a subscription linked to the account Google, and not to the application. If you delete YouTube. then:

    • You will not be able to watch the video without unnecessary water in the official application.
    • Keep access to YouTube Music Premium (if you have it).
    • You will be able to enjoy the benefits Premium in the browser or through alternative clients (for example NewPipe with authorization).
    Is it possible to return YouTube after complete deletion?

    Yes, but the method depends on the deletion method:

    • If you disabled application โ†’ turn it back on settings.
    • If deleted through ADB โ†’ install YouTube from Google Play or run the command:
      adb shell cmd package install-existing com.google.android.youtube
    • If deleted with rootrights โ†’ restore deleted files from a backup or reflash the phone.