How to completely remove YouTube from Xiaomi phone: from disconnection to uninstallation of the system APK

The YouTube app on Xiaomi smartphones is often installed as a system app, which cannot be removed in the standard way through the Apps menu, which creates problems: the app takes up space in memory, consumes traffic in the background and can conflict with alternative customers (for example, Vanced or ReVanced). In this article, we will discuss all possible methods for removing YouTube from Xiaomi devices, including models on MIUI 14/15 and HyperOS, taking into account the peculiarities of system applications and the manufacturer’s limitations.

It is important to understand: on most Xiaomi smartphones (for example, Redmi Note 12, POCO X5, Xiaomi 13T) YouTube is integrated into the firmware as com.google.android.youtube β€” it can't be removed without additional tools. ADB Or custom restoration. We'll look at options for users without any ROOT-And for those who are willing to do more manipulation of the system.

Why can’t YouTube be removed in the standard way?

On Xiaomi smartphones, YouTube is classified as a Google System Services (GMS) app, which means:

  • πŸ“¦ Established in section /system/priv-app/ or /system/app/, which is protected from change without change ROOT.
  • πŸ”’ There is no β€œDelete” button in the application settings – only β€œDisable” or β€œDelete Updates".
  • πŸ”„ After resetting settings or updating the firmware, YouTube is automatically restored.
  • πŸ“± On some models (e.g. Xiaomi for the global market), YouTube is pre-installed as part of the Google Play Services package.

Even if you remove app updates through Settings β†’ Apps β†’ YouTube β†’ Remove updates, the base version will remain in the system.This is due to the licensing agreements between Xiaomi and Google: the manufacturer is obliged to include key Google services in the firmware for devices with Google Mobile Services (GMS) certification.

⚠️ Note: On Xiaomi devices for the Chinese market (without the GMS) YouTube may not be there at first. If you bought a phone in China, you'll need to install Google Play Services first, but then YouTube will be a system app.

Method 1: Disable YouTube without deleting (for beginners)

If you don’t need to completely remove the app, but just hide it and stop background activity, use the built-in MIUI tools:

  1. Open Settings β†’ Applications β†’ Application Management.
  2. Find YouTube in the list (use search if necessary).
  3. Slip on the app and select Disable.
  4. Confirm the action in the dialog window.

After the shutdown:

  • 🚫 YouTube icon will disappear from the app menu.
  • πŸ“΅ The app will not be updated via Google Play.
  • πŸ”„ Background processes (e.g. notifications) will cease.
  • πŸ”™ To return YouTube, go to the same settings and click Enable.

This method does not free up space on the device, but completely stops the application, suitable for users who want to avoid complex manipulation of the system.

πŸ’‘

If YouTube continues to appear in app search results after disabling, clear the Launcher cache (the standard Xiaomi launcher) in the app settings.

Method 2: Remove updates and reset to factory version

If YouTube has been updated through Google Play, you can return it to the original version that takes up less space:

  1. Go to Settings β†’ Apps β†’ YouTube β†’ Storage.
  2. Click Clear the cache and Delete data (this will reset the app settings).
  3. Select Remove Updates (if the button is active).

After that:

  • πŸ“‰ The size of the application will be reduced to ~20-30 MB (instead of 100 MB)+ MB with updates).
  • πŸ”’ Functionality will be limited to the basic version without the latest features.
  • 🚫 Auto Update via Google Play will be blocked (but you can manually enable it).
Action.The resultReversibility
Disabling the applicationThe icon disappears, the background processes stopYes (includes in settings)
Removal of updatesReset to factory version (~20 MB)Yes (updated via Play Market)
Clearing cache and dataDelete temporary files and settingsYes (data is restored upon entry)
Removal via ADBComplete uninstallation for current userOnly through re-installation

⚠️ Note: On some Xiaomi models (e.g, POCO F4 or Redmi K50) After removing updates, YouTube can automatically update when you next connect to the Internet. To avoid this, disable auto-update for the app on Google Play.

πŸ“Š What is the best way to delete YouTube?
Disconnection through settings
Removal of updates
Complete removal through ADB
Removal of c ROOT-rights
I don't know, I need advice.

Method 3: Completely delete YouTube via ADB (without ROOT)

For users who are ready to use Android Debug Bridge (ADB), There is a way to delete YouTube without receiving it. ROOT-It's not gonna delete. APK from the system, but will make it inaccessible.

You'll need:

  • πŸ–₯️ A computer with installed Xiaomi drivers and ADB.
  • πŸ“± Included debugging by USB on the phone (Settings) β†’ The phone. β†’ Version. MIUI β€” Tap 7 times, then return to the additional β†’ For developers β†’ Debugging by USB).
  • πŸ”Œ USB-cable (preferably original).

Instructions:

  1. Connect the phone to the PC and allow debugging over USB.
  2. Open the command line (Windows) or terminal (macOS/Linux) and type:
adb devices

Make sure the device is identified (serial number should appear). Then execute the command to delete YouTube for the current user:

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

After completion:

  • πŸ—‘οΈ The app will disappear from the menu and list of installed.
  • πŸ”„ Updates via Google Play will be impossible.
  • πŸ”™ To get YouTube back, you just need to reinstall it from the Play Market.

USB debugging enabled

Installed drivers Xiaomi on PC

ADB added to environment variables (or in the same folder with the terminal)

The phone is connected in file transfer mode (MTP).

Backup of important data is made-->

This method works on all modern versions of MIUI (12-15) and HyperOS. However, after resetting settings or creating a new user, YouTube can return.

Method 4: Removal of the system APK s ROOT-rights

If you have ROOT-access (e.g. via Magisk), you can completely remove YouTube from the system. This is the most radical method, but it ensures that the app will not return after updates.

Instructions for Root Explorer or Mixplorer:

  1. Open a file manager with ROOT support (such as Mixplorer).
  2. Go to /system/priv-app/PrebuiltGmsCore/ or /system/app/.
  3. Find files with names: YouTube.apk YouTube.odex (if any) Folder com.google.android.youtube (if any)

.bak

Reset the device.

Alternatively, you can use the command in Terminal Emulator or through ADB shell with ROOT:

su


mount -o rw,remount /system




rm -rf /system/priv-app/PrebuiltGmsCore/YouTube*




rm -rf /system/app/YouTube*




reboot

⚠️ Attention: Removal of system APK This can cause Google Play Services or other Google services to be unstable, and on some firmware, it causes security check errors (SafetyNet) if you use banking applications or Google Pay, this method can block them from working.

What if Google services stopped working after YouTube was deleted?
If you have problems with Google Play Services after you delete YouTube (such as sync errors or app crashes), try: 1. Install the latest version of Google Play Services manually (download APK with APKMirror). 2. Clear the cache and data of Google Play Services in the application settings. 3. Reboot the device. If the problem persists, restore deleted YouTube files from the backup or reflash the device.

Method 5: Use custom firmware (for experienced)

If you’re ready for drastic measures, installing custom firmware (like LineageOS, Pixel Experience or ArrowOS) will get rid of YouTube and other unnecessary apps forever.

  • πŸ”“ Unlocked bootloader (bootloader).
  • πŸ› οΈ Established custom restoration (TWRP Or OrangeFox).
  • πŸ“₯ Compatible firmware for your Xiaomi model.

Advantages:

  • 🧹 Complete lack of pre-installed Google apps (if you choose firmware without Google’s pre-installed apps) GMS).
  • πŸ”§ Ability to fine-tune the system.
  • πŸ“± Better performance due to lack of background processes.

Disadvantages:

  • ⚠️ Loss of warranty (if the bootloader is unlocked).
  • πŸ”’ SafetyNet problems (some applications will not work).
  • πŸ”„ The need for manual firmware updates.

To install custom firmware, follow the instructions for your model on the XDA Developers forum or in thematic communities. For example, for the Redmi Note 10 Pro, Pixel Experience without GMS will work, and for POCO F3, LineageOS.

πŸ’‘

Custom firmware is the only way to permanently get rid of YouTube and other system apps, but it requires technical skills and can lead to data loss.

YouTube Alternatives: What to Use Instead of a Standard Client?

If you have removed YouTube but want to continue watching videos, consider the alternatives:

AnnexAdvantagesDeficiencies
NewPipeNo advertising, background playback, video downloadNo Google account, manual update
ReVancedModified YouTube with Ad BlockingRequires manual installation, possible account bans
SkyTubeOpen source, privacyLimited functionality, no official updates
YouTube in the browserNo installation, always the current versionNo notifications, less user-friendly interface

To install NewPipe or ReVanced, download APK from the official sites:

  • NewPipe (available on F-Droid)
  • ReVanced (requires patching of the original APK)

If you prefer the web version, add a YouTube shortcut to the home screen via your browser (Chrome or Firefox): open m.youtube.com, click Share β†’ Add to the home screen.

Frequent Mistakes and How to Avoid Them

When you delete YouTube, users often face problems, and here are the most common ways to solve them:

  • πŸ”„ YouTube is back after an update MIUI: This is because the firmware restores the system applications, so the solution is to disable the firmware auto-updates or use the software to reset the system. ADB Removal after each update.
  • 🚫 Google Play is not working after YouTube is deleted: Critical files are deleted GMS. The solution is to restore YouTube or reflash the device.
  • πŸ”’ I can't get it. ROOT: On new Xiaomi models (e.g. Xiaomi 14), unlocking the bootloader may be limited. Check the unlock status on the Mi Unlock site.
  • πŸ“± Phone doesn't turn on after system manipulation: Most likely, system files were damaged. The solution is to flash the device through Fastboot using the Mi Flash Tool.

⚠️ Note: On devices with HyperOS (new shell from Xiaomi) some commands ADB For example, to delete an application, you may need to specify a different user ID (not a user ID). --user 0, --user 10). Check the list of users by adb shell pm list users.

FAQ: Answers to Frequent Questions

Can I delete YouTube without a computer?
Yes, but with limitations. Without a PC, you can only disable the app or uninstall updates (see Method 1 and Method 2). ADB or ROOT-Computer rights are mandatory.
Why does it reappear after YouTube is deleted via ADB?
This is due to automatic system applications recovery when you update your firmware or reset your settings. To prevent YouTube from returning: Turn off auto firmware updates in Settings β†’ About Phone β†’ System Update. Use Magisk to block application recovery (Universal GMS Doze module).
Will YouTube Premium work if I remove the standard app?
Yes, but with reservations: If you use NewPipe or ReVanced, Premium features (background play, no ads) won't work - these customers don't support an official subscription. If you log in to the YouTube web version via a browser, Premium will work (but without notifications and some features of the mobile app).
Can you delete YouTube on Xiaomi without losing your warranty?
Yes, if you use methods without unlocking the bootloader and ROOT: Disabling the application (does not affect the warranty); Removing updates (does not affect the warranty); Deleting via ADB for the current user (does not affect the warranty, as it does not modify system files). ROOT Or custom firmware, cancel the warranty.
How to get back YouTube if I deleted it through ADB?
You can restore the app in two ways: Install YouTube from Google Play (there will be a custom version, not a system version). Execute the command in ADB: adb shell cmd package install-existing com.google.android.youtube This will return the system version (does not work on all firmware).