How to permanently remove YouTube from Xiaomi Redmi 9T: from simple to radical

The YouTube app on Xiaomi Redmi 9T is often a source of annoyance: it takes up space in memory, consumes traffic in the background and prevents you from completely disabling updates. Unlike most user programs, YouTube on Xiaomi is often embedded in the firmware as a system application โ€” it can not be removed in the standard way through the settings menu. But this does not mean that the task is impossible.

In this article, we'll look at all the possible methods, from temporary shutdown to complete deletion with ADB and even manual intervention in system files. It's important to understand that the depth of intervention depends on your goals. If you just want to hide an application, the first two ways will suffice. If the goal is to make room and get rid of background activity forever, you have to use advanced techniques. On Redmi 9T with MIUI 12.5+ firmware, the method of disconnecting through Settings โ†’ Applications is unstable - the application can self-heal after system updates.

Before you start, check:

  • ๐Ÿ“ฑ Version MIUI: Settings โ†’ The phone. โ†’ Version. MIUI. On the Redmi. 9T current versions 12.5โ€“14.
  • ๐Ÿ”’ Root rights status: if the phone is not rooted, methods with ADB and editing system files will require unlocking the bootloader.
  • ๐Ÿ“ฆ Free space: after removal of the system APK Up to 150-200 MB (depending on YouTube version).
๐Ÿ“Š Why do you want to delete YouTube from Redmi? 9T?
It takes up a lot of space.
Interfering with background processes
I don't use it.
Other

1. disable YouTube without deleting (the safest way)

If you don't have to permanently erase an app, but you just stop it and hide it from the menu, this is the best way to do it, and it doesn't require superuser rights, and it's reversible, and if you need it, you can re-activate YouTube.

Steps to shut down:

  1. Open Settings โ†’ Applications โ†’ Application Management.
  2. In the search bar, type โ€œYouTubeโ€ and select the app from the list.
  3. Click Disable (the button will appear if the application is system).
  4. Confirm the action in the dialog window.

What happens after the shutdown:

  • ๐Ÿšซ YouTube icon will disappear from the app menu.
  • ๐Ÿ“ต The app will stop receiving updates via Google Play.
  • ๐Ÿ”„ Background processes (e.g. statistics collection) will be stopped.
  • โš ๏ธ But! the application files will remain in the memory of the phone and will take about 100-150 MB.

โš ๏ธ Note: On some versions MIUI After major system updates, disabled applications can automatically turn on again!

๐Ÿ’ก

If the โ€œDisableโ€ button is inactive, try first to delete all YouTube updates through Settings. โ†’ Annexes โ†’ YouTube โ†’ โ‹ฎ โ†’ Remove updates.

2.Removal of updates and reset to factory version

YouTube on Redmi 9T consists of two parts:

  1. System APK is a firmware version (usually outdated).
  2. Updates from Google Play are new versions that are downloaded automatically.

Even if you completely remove the application will not work, you can at least return it to the factory state - it will free up to 50-80 MB and stop background activity.

Instructions:

  1. Go to Settings โ†’ Applications โ†’ Application Management โ†’ YouTube.
  2. Press three points (โ‹ฎ) in the upper right corner and select Remove Updates.
  3. Confirm the action. The app will go back to the version that was used when you bought the phone.
  4. (Optional) Turn off auto-update for YouTube on Google Play: Open Play Store, find YouTube. Click on three dots next to Update. Uncheck Auto Update.

After that:

  • โœ… The application will stop updating automatically.
  • โœ… New features (like YouTube Premium or Shorts) will disappear).
  • โŒ But systemic. APK It will remain and cannot be removed without ADB or root rights.
What to do if the โ€œRemove Updatesโ€ button is inactive?
This means that your Redmi 9T has YouTube installed as a fully system application with no rollback option, in which case only deleting via ADB (see Section 4) or manually editing system files (Section 5) will help.

3.Use ADB for uninstallation (no root)

ADB (Android Debug Bridge) is an Android debugging tool that lets you execute commands on your phone from your computer, and you can delete YouTube without root rights, but you need to unlock Developer Options and enable USB Debugging.

Step-by-step:

  1. Phone Preparation: Activate Developer Options: Go to Settings โ†’ About Phone and 7 times click on MIUI Version. Return to Settings โ†’ Additional โ†’ For Developers and enable USB Debugging.
  2. Install ADB on PC: Download Platform Tools from the official Android website. Unpack the archive into a folder (for example, C:\adb). Connect Redmi 9T to your computer via USB (select File Transfer Mode).

Execution of the command:

adb shell pm uninstall -k --user 0 com.google.android.youtube
  • Open the command prompt (Win + R โ†’ cmd) and go to the folder with ADB:
  • Enter the command above and press Enter.

What do flags in a team mean:

  • -k - saves the cache and application data (if you want to delete everything, remove this flag).
  • --user 0 โ€” It indicates the current user (does not require root).

โš ๏ธ Note: Some firmware Xiaomi may recover from YouTube after the reboot. To avoid this, before you execute the command, turn off the Internet and remove all app updates (see section 2).

โ˜‘๏ธ Preparation for removal through ADB

Done: 0 / 5

4. Complete removal through root rights

If you are willing to take drastic measures and you have an unlocked bootloader with Magisk or another root manager installed, you can delete YouTube permanently, including all system files, which is suitable for experienced users, as it carries the risk of disrupting the stability of the system.

Methods of disposal:

  1. Through file manager with root: Install Root Explorer or FX File Explorer. Go to /system/priv-app/YouTube or /system/app/YouTube. Delete the entire folder or files inside (YouTube.apk, YouTube.odex if any). Reboot your phone.

Through Terminal Emulator:

su


mount -o rw,remount /system




rm -rf /system/priv-app/YouTube




rm -rf /system/app/YouTube




mount -o ro,remount /system




reboot

Advantages of the method:

  • ๐Ÿงน Complete removal of all YouTube traces, including cache and data.
  • ๐Ÿ“‰ Free up to 200 MB of memory.
  • ๐Ÿ”’ The app will never recover on its own again.

Risks:

  • โš ๏ธ If you sloppyly delete system files, the phone may stop booting (bootloop).
  • โš ๏ธ Certain functions MIUI (Google Services may not work smoothly.
  • โš ๏ธ After the firmware update, YouTube may return.

๐Ÿ’ก

Before you delete your system files, make sure to back up via TWRP or OrangeFox, which will allow you to recover your phone in the event of a crash.

5. Alternative methods: Disconnect via Titanium Backup or Debloater

If ADB seems complicated and root rights don't, you can use specialized utilities to trim system applications, which automate the process and reduce the risk of errors.

Method 1: Titanium Backup (requires root)

  • ๐Ÿ“Œ Install Titanium Backup from Google Play.
  • ๐Ÿ” Find the list of applications com.google.android.youtube.
  • ๐Ÿ—‘๏ธ Click Delete! and confirm the action.
  • ๐Ÿ”„ Reboot the phone.

Method 2: Universal Android Debloater (without root, via ADB)

  • ๐Ÿ’ป Download Universal Android Debloater on PC.
  • ๐Ÿ“ฑ Get Redmi on board. 9T down USB plugged.
  • ๐Ÿ–ฑ๏ธ Start the program, select com.google.android.youtube in the list.
  • ๐Ÿšซ Press Uninstall (the application will be deactivated for the current user).

The advantages of these methods are:

  • ๐ŸŽฏ More secure than manual editing of system files.
  • ๐Ÿ”„ You can return the application back with one click.
  • ๐Ÿ“Š Supports batch removal of several unnecessary apps (e.g. Google Duo, MIUI Bloatware).

6 What to do if YouTube is back after MIUI update

One of the most common problems with the Xiaomi Redmi 9T is the self-repair of remote system applications after a firmware update, which is because MIUI contains a system APK protection mechanism that restores them when critical updates are made.

How to prevent YouTube from returning:

  • ๐Ÿ”„ Turn off automatic updates MIUI: Go to Settings. โ†’ The phone. โ†’ Update the system. Press three dots (โ‹ฎ) and select Update Settings. Turn off Autoboot and AutoInstall.
  • ๐Ÿ“ฅ Install updates manually: Download firmware from Xiaomi's official website. Uninstall YouTube via YouTube before installing ADB or Debloater.
  • ๐Ÿ›ก๏ธ Use Magisk modules: Install Universal Debloater or Xiaomi Debloater via Magisk. These modules block the recovery of remote applications after updates.

If YouTube is back,

  1. Repeat the removal process through ADB (Section 3).
  2. Check for updates for Universal Android Debloater โ€“ newer versions often add support for fresh MIUI firmware.
  3. If nothing works, consider switching to custom firmware (like LineageOS or Pixel Experience) that doesnโ€™t have a sewn-in YouTube.
Deleting methodRoot is required.ReversibilityRisk of failurePlace vacated
Disconnection in settingsโŒ No.โœ… Yes.โŒ No.0 MB (files remain)
Removal of updatesโŒ No.โœ… Yes.โŒ No.50โ€“80 MB
ADB-teamโŒ No.โœ… Yes.โš ๏ธ Low.100โ€“150 MB
Root + manual removalโœ… Yes.โŒ No (no backup)โš ๏ธโš ๏ธ High-pitched150-200 MB
Debloater-utilitiesโŒ No (except Titanium)โœ… Yes.โš ๏ธ Medium.100โ€“180 MB

FAQ: Frequent questions about removing YouTube from Xiaomi Redmi 9T

Can I delete YouTube without a computer?
Yes, but with limitations: Without root rights, you can only disable or uninstall updates (sections 1 and 2). If you have root, use Titanium Backup or Root Explorer directly on your phone. Termux with ADB installed is suitable for complete removal without a PC, but it is more difficult than using a computer.
Why does YouTube reappear after being deleted via ADB?
This is because: MIUI Auto Updates -- the system restores system APKs to critical updates. Google Play Services sometimes automatically reinstalls YouTube as a "recommended" app. Errors in the ADB team -- if you don't flag --user 0, the app won't be deleted for all users. Solution: before you delete, turn off the Internet, delete YouTube updates, and use the command: adb pm uninstall -k --user 0 com.google.android.youtube shell
How can I get back YouTube if I change my mind?
Recovery: If removed via ADB without the flag -k: adb shell cmd package install-existing com.google.android.youtube If disabled in settings: Settings โ†’ Apps โ†’ Disabled โ†’ YouTube โ†’ Include. If deleted from root: restore files from the backup or reinstall APK manually (download from APKMirror).
Will YouTube Premium work after being deleted and re-installed?
Yes, but with nuances: If you delete the updates (section 2), Premium will work, but with stripped down functionality (old version). If you completely delete and re-installed YouTube from Google Play, Premium will remain, as it is linked to a Google account. If you install a modified version (for example, YouTube Vanced), Premium will not work - these builds are blocked by Google.
Can I delete YouTube Music with YouTube?
Yes, YouTube Music is removed by similar methods, as it is a separate app with the com.google.android.apps.youtube.music. Commands: Through ADB: adb shell pm uninstall -k --user 0 com.google.android.apps.youtube.music Through root: delete the /system/priv-app/YouTubeMusic folder. Please note: Deleting YouTube Music does not affect the main YouTube, and vice versa.