How to completely remove YouTube from Xiaomi Mi TV: a step-by-step guide

Owners of Xiaomi Mi TVs (series 4, 5, 6 and Mi TV Q) often face a problem: the pre-installed YouTube app cannot be removed by standard means. It takes up space in memory, slows down the system and imposes updates that can conflict with the TV firmware. Worse, after resetting or updating the software, the application returns back as if it had never been removed.

In this article, we will discuss 5 working ways to get rid of YouTube on Xiaomi Mi TV โ€“ from simple shutdown to complete deletion of system files (including methods for firmware based on Android TV 9/10/11). Importantly, some methods require technical skills and can lead to a loss of warranty or failure of the TV if performed improperly. If you are not sure, use safe alternatives (sections 2 and 3).

Why canโ€™t YouTube be removed in the standard way?

The YouTube app on Xiaomi Mi TV is a system application (or bloatware) that is integrated into the firmware at the system image level and has the status of a priv-app (privileged).

  • ๐Ÿ”’ Removal protection: The system blocks uninstallation attempts via the settings menu.
  • ๐Ÿ”„ Auto-Recovery: After a software update or reset, YouTube returns (Google Play Protect feature).
  • ๐Ÿ“ฆ Occupied space: The app weighs ~150-300 MB, plus cache and update data.
  • ๐Ÿ› ๏ธ New versions of YouTube may slow down older Mi models TV (for example, on Android TV 8.1).

The root of the problem is a license agreement between Xiaomi and Google, which requires the manufacturer to pre-install Google services (including YouTube) on Android TV devices to get certification, but users can disable or remove them โ€” but this will require workarounds.

๐Ÿ“Š What is your Xiaomi Mi model? TV?
Mi TV 4 (4A/4C/4X)
Mi TV 5 (5X/5 Pro)
Mi TV 6 (OLED/QLED)
Mi TV Q1/Q2
Another model

Method 1: Turn off YouTube without deleting (the safest)

If you just have to hide YouTube and ban it, this is the best way to do it, and it doesn't require a super user's rights, and it doesn't affect the warranty.

Instructions:

  1. Open the Settings โ†’ Applications.
  2. Find it on the YouTube list (could be called com.google.android.youtube.tv).
  3. Select Disable (do not "Delete Updates!").
  4. Confirm the action by pressing OK.
  5. Go to Settings โ†’ Device โ†’ Storage and clear the YouTube cache.

What does it mean?

  • โœ… The app will disappear from the menu and launcher.
  • โœ… Background processes and updates will stop.
  • โœ… Released. ~50โ€“100 MB of memory (excluding cache).

โš ๏ธ Note: After resetting or updating your firmware, YouTube may be activated again. To avoid this, turn off automatic app updates in Settings โ†’ Annexes โ†’ Google Play Store โ†’ Auto-update.

๐Ÿ’ก

If YouTube continues to appear in the home screen recommendations after the shutdown, reset the launcher settings: Settings โ†’ Applications โ†’ Launcher (Mi Home) โ†’ Storage โ†’ Clear data.

Method 2: Remove YouTube Updates (Free Space)

Even if you canโ€™t remove the app itself, you can roll it back to the factory version and disable updates.This will free up to 200MB of storage and eliminate the lags caused by new versions of YouTube.

Step-by-step:

โ˜‘๏ธ Removing YouTube updates

Done: 0 / 5

After the rollback:

  • ๐Ÿ“‰ YouTube will be an old version (possibly with a stripped-down functionality).
  • ๐Ÿšซ No new updates will be installed (if you manually disable them).
  • โš ๏ธ Certain functions (e.g, 4K HDR) They may not work properly.

To ban updates permanently:

  1. Open the Google Play Store.
  2. Find YouTube in the list of apps.
  3. Click on the three dots in the top right corner and uncheck the checkmark with Auto Update.

Method 3: Delete YouTube via ADB (for power users)

If shutdowns and rollbacks arenโ€™t enough, you can completely remove YouTube using Android Debug Bridge (ADB).This method works on all Xiaomi Mi TV models, but requires a PC connection.

What you need:

  • ๐Ÿ–ฅ๏ธ Computer with Windows/Linux/macOS.
  • ๐Ÿ”Œ USB-cable (preferably original).
  • ๐Ÿ“ฅ Utility. ADB Tools (download from Google website).
  • ๐Ÿ”ง Included debugging by USB TV-wise.

Instructions:

  1. Turn on USB debugging: Go to Settings โ†’ About TV โ†’ Software version. Press 7 times on the build number until the message You became a developer appears. Go back to Settings โ†’ For developers and turn on debugging over USB.
  2. Connect the TV to the PC and confirm the debugging permission.
  3. Open the command prompt (Windows) or terminal (Linux/macOS) in the folder with ADB.
  4. Follow the commands: adb devices (should appear serial number TV) adb shell pm uninstall -k --user 0 com.google.android.youtube.tv

If the command is correct, YouTube is removed for the current user, and to return it, you just need to update the firmware or reset the settings.

โš ๏ธ Note: Some of the Mi's firmware TV (for example, Android TV 10+) You may need an additional command to delete data: adb shell pm clear com.google.android.youtube.tv Without it, the application can recover after a reboot.

What if ADB canโ€™t see the TV?
1. Check. USB-cable โ€“ it should support data transfer (not all charging cables are suitable). 2. USB-port on the TV (usually a port marked "Service" or "OTG"). 3. Install the drivers ADB for your OS (Windows may require manual installation through Device Manager). 4. Restart your TV and PC, then reconnect.

Method 4: Block YouTube through the file system (root method)

To completely remove YouTube from Xiaomi Mi TV, you will need superuser rights (root), a method that can lead to a loss of warranty, system disruption, or TV blink. Use it only if other methods have not worked.

Pre-launch warnings:

  • ๐Ÿšจ The warranty is cancelled after receiving root.
  • ๐Ÿ”„ Software updates will become impossible (you will have to install firmware manually).
  • ๐Ÿ› ๏ธ Risk of โ€œbrickingโ€ โ€“ if you delete critical system files.

Instructions (for firmware based on Android TV 9/10):

  1. Get root rights with Magisk (the instructions for Xiaomi Mi TV are available on the 4PDA or XDA Developers forums).
  2. Connect to the TV via ADB (as in Method 3).
  3. Delete. APK-YouTube file: adb shell su mount -o rw,remount /system rm -f /system/priv-app/YouTube/YouTube.apk rm -f /system/app/YouTube/YouTube.apk rm -rf /data/data/com.google.android.youtube.tv exit reboot

An alternative method is to replace the APK with a "dummy" (so that the system does not restore the application):

  • Download the empty YouTube.apk (can be created via APK Editor).
  • Replace the original file with the command: adb push empty_YouTube.apk /system/priv-app/YouTube/YouTube.apk
Deleting methodNeed root?Risk to the systemRecovering after resetting?
Disconnection in settingsโŒ No.โš ๏ธ Low.โœ… Yes.
Removal of updatesโŒ No.โš ๏ธ Low.โœ… Yes.
ADB-removalโŒ No.โš ๏ธ Medium.โŒ No, until the software update)
Root + removal of APKโœ… Yes.โ— High-pitchedโŒ No.
Replacement with a blank.โœ… Yes.โ— High-pitchedโŒ No.

Method 5: Alternative launchers (Hide YouTube without deleting)

If you just need to remove YouTube from the home screen, but leave it to run, install an alternative launcher. It's a secure method that doesn't require rooting and doesn't affect system files.

Best launchers for Xiaomi Mi TV:

  • ๐Ÿ  ATV Launcher โ€“ minimalist interface without advertising.
  • ๐ŸŽฎ Sideload Launcher โ€“ only shows manually installed applications.
  • ๐Ÿ–ผ๏ธ HalLauncher โ€“ supports customization of wallpaper and icons.
  • ๐Ÿ“ฑ Leanback Launcher is Googleโ€™s standard launcher, but without any imposed apps.

How to determine:

  1. Download. APK launcher USB-drive (for example, from the APKMirror website).
  2. Connect the flash drive to the TV.
  3. Open File Manager โ†’ USB โ†’ Install APK.
  4. In the TV settings, select the new default launcher: Settings โ†’ Applications โ†’ Default launcher.

Advantages of the method:

  • โœ… Does not require rooting or ADB.
  • โœ… You can return the standard launcher at any time.
  • โœ… It hides not only YouTube, but also other unnecessary apps (such as Mi Home or Netflix).

๐Ÿ’ก

Alternative launchers are the only way to remove YouTube from the home screen without risking the system: They don't physically remove the app, but make it invisible and inaccessible to random launch.

What if YouTube is back after the update?

Even after you delete YouTube can recover from a firmware update, because Xiaomi includes it in the system image to prevent it from returning:

  1. Turn off automatic software update: Settings โ†’ About TV โ†’ System Update โ†’ Auto Update โ†’ Turn off
  2. Block update servers via router: Add to the blacklist domains: ota.tv.xiaomi.com, update.tv.xiaomi.com, android.clients.google.com.

Install firmware manually

  • Download the official firmware from the Xiaomi website.
  • Before installing, delete YouTube-related files from your archive (e.g. YouTube.apk in /system/priv-app/).

If YouTube is back,

  • Repeat Method 3 (ADB) or Method 2 (rollback updates).
  • Use Method 5 (alternative launcher) to hide it.

FAQ: Frequent questions about removing YouTube from Xiaomi Mi TV

Can I delete YouTube without a computer?
Yes, but only disable or roll back updates (Methods 1 and 2). Complete removal requires ADB or root, which requires a PC. The alternative is to install an alternative launcher (Method 5), but that won't physically remove the application.
Why does YouTube reappear after being deleted via ADB?
This is because of Google Play Protect, which restores system applications. To avoid this: Disable the Google Play Store in the app settings. Use the ADB command to completely delete data: adb shell pm uninstall -k --user 0 com.google.android.youtube.tv
Will the Smart YouTube TV work after the standard YouTube is removed?
Yes, Smart YouTube. TV (SmartTubeNext is a separate application that doesn't depend on the pre-installed YouTube. It can be installed via Send Files to TV or ADB. Advantages: ๐Ÿš€ No advertising. ๐ŸŽฅ Support 4K HDR. ๐Ÿ”’ Google tracking blocking. You can download it on the official website.
How to get back YouTube if you need it again?
If you have deleted YouTube through ADB or root, you can restore it by: Reset your TV to factory settings (Settings โ†’ Device โ†’ Reset). Update your firmware through Settings โ†’ System Update. Install APK manually (you can download from APKMirror). If you used an alternative launcher, just return the standard one in the settings.
Can I delete YouTube on Mi TV Stick or Mi Box?
All of the methods described (except for the method) 4 Root is also available on Xiaomi Mi TV Stick/Mi Box S. Features: Mi Box is easier to get root (there are ready-made firmware with Magisk). ADB plug-in 5555 (Included in the developer settings. Alternative launchers (e.g, ATV Launcher is more stable than on TVs.