How to remove unnecessary app from the screen Xiaomi: hide, remove and disable

Xiaomi’s MIUI-based smartphones are often filled with pre-installed apps that the user doesn’t always need. Even after manually installing the software, the home screen can turn into a mess of shortcuts, folders, and widgets. In this article, we’ll look at all the working ways to remove an app from the Xiaomi screen, from simple concealment to complete removal of system programs (including those that aren’t removed by standard methods).

It is important to understand the difference between deletion, disabling and concealment:

  • πŸ—‘οΈ Delete – completely erasing the application from the device (possibly not for all system programs).
  • βš™οΈ Disable – deactivate an application without deleting its files (saves resources, but does not free up memory).
  • πŸ‘οΈ Hiding – removing the shortcut from the main screen without affecting the application itself.

The instructions below are relevant to all modern Xiaomi, Redmi, POCO and Black Shark devices on MIUI 12-15 (including global and Chinese firmware versions).If your device is running HyperOS (the new flagship shell of 2026), some menu items may differ slightly, as we will mention separately.

πŸ“Š What Xiaomi model do you use?
Redmi Note 12/13
POCO X5/X6
Xiaomi 13/14
Black Shark 5/6
Another model

1. How to remove the app shortcut from the home screen (without deleting)

The quickest way to clean the home screen is to simply remove the shortcut without affecting the app itself, which is useful if you need the software, but its icon gets in the way.

Instructions:

  1. Press and hold your finger on the icon of the app you want to remove.
  2. At the top of the screen, a panel with options will appear. Drag the icon to the Delete zone (usually indicated by a basket or cross).
  3. Confirm the action if a request appears.

⚠️ Note: On some models (e.g, POCO F5 s MIUI 14) after a long press, the context menu opens. In this case, select Remove from the main screen or Hide.

If the shortcut is gone, but the app is still in the app menu (swipe up from the bottom of the screen), then you did the right thing. To bring the icon back, find the app in the menu, click on it and hold it, then drag it to the main screen.

The shortcut is not a widget (widgets are deleted differently)

The application is not system (if system – it is better to hide, not remove the shortcut)

There is free space on the screen to return the icon if necessary.

-->

2. How to hide the application from the menu (without deleting)

If you want to not only remove the icon from the home screen, but also hide the application from the general list (so that it does not appear when swiping up), use the built-in Hidden Applications feature in MIUI.

Step-by-step:

  • πŸ“± Open the Settings. β†’ Annexes.
  • πŸ” Scroll down and select Hidden Apps (on some firmware, the item may be called Application Management). β†’ Hide applications).
  • βœ… Check the programs you want to hide.
  • πŸ’Ύ Click Save or Ready.

After that, the applications will disappear from:

  • πŸ“± App menu (swipe up).
  • πŸ” Searches by system (unless the option β€œShow hidden” is enabledΒ»).
  • πŸ“Š Use statistics in Settings β†’ Battery.

⚠️ Attention: Hidden applications continue to run in the background and may consume battery power. To completely stop them, use the shutdown method (section 4).

How to get the hidden app back?
To re-display hidden programs, go back to Settings β†’ Apps β†’ Hidden apps, uncheck the boxes and save the changes. If the item is missing from the menu, try searching for β€œhidden” in your settings.

3. How to remove the user application (completely)

If the application was installed by you from Google Play or.apk file, it can be removed completely, freeing up space in the device memory.

Methods of disposal:

  1. Through the app menu: πŸ“± Swipe up to open a list of all apps. πŸ” Find the right app, click and hold its icon. πŸ—‘οΈ At the top of the screen, select Delete or drag the icon to the cart. βœ… Confirm the action.
  2. Through settings: βš™οΈ Go to Settings. β†’ Annexes β†’ Application management. πŸ” Find the app in the list and tap it. πŸ—‘οΈ Click Remove (if the button is inactive – the application is system-based).

If the Remove button is inactive or not, then the application is system (preinstalled by Xiaomi).

Deleting methodSuitable forFrees up memory?Needs root?
Removal via menuUser-generated applicationsβœ… Yes.❌ No.
Disconnection in settingsSystem applications❌ No (only stops)❌ No.
Removal via ADBAny applications (except critical ones)βœ… Yes.❌ No, but I need a PC)
Removal with root rightsAny applications (including system)βœ… Yes.βœ… Yes.

4. How to disable the system application (without deleting)

System applications (e.g. Mi Video, Mi Music, GetApps) can’t normally be removed by standard methods, but they can be disabled, which will stop them from working and hide them from the menu, but the files will remain in the device’s memory.

Instructions:

  • βš™οΈ Open the Settings. β†’ Annexes β†’ Application management.
  • πŸ” Find the right app in the list (use the filter All, not just Downloaded).
  • 🚫 Click Disable (button may be called Disable or Deactivate).
  • βœ… Confirm the action in the window that appears.

⚠️ Note: Do not disable apps with names:

  • com.android. (Android system services),
  • com.miui. (MIUI shell components),
  • Google.com (Google services if you need them).

Their deactivation can lead to the inoperability of the smartphone (for example, access to settings or mobile network will disappear).

πŸ’‘

Before disabling a system application, check its name online (for example, by searching for "com.miui.video what it is"). Many "unnecessary" programs are actually responsible for important functions such as updates or synchronization.

5. How to remove the system application without root (via ADB)

If you’re ready to connect your smartphone to your computer, you can completely uninstall system applications without getting root permissions using ADB (Android Debug Bridge), a method that works on all Xiaomi devices, but requires caution.

What you need:

  • πŸ–₯️ Computer with Windows/macOS/Linux.
  • πŸ”Œ USB-cable (preferably original).
  • πŸ“₯ Installed drivers Xiaomi and ADB Tools.
  • πŸ”“ Included debugging by USB smartphone.

Step-by-step:

  1. Turn on USB debugging: Go to Settings β†’ About Phone. Tap 7 times on MIUI Version to activate Developer Mode. Go back to Settings β†’ Additional β†’ Developer. Activate USB Debugging.
  2. Connect your smartphone to your PC: Agree to a request for trust on your smartphone screen. Open the command line (Windows) or terminal (macOS/Linux) in the folder with ADB.

Check the connection:

adb devices

The serial number of your device should be displayed.

Delete the annex:

adb shell pm uninstall -k --user 0 title.packet

For example, to remove Mi Video:

adb shell pm uninstall -k --user 0 com.miui.videoplayer

πŸ“Œ Where to find the name of the package?

  • Install the App Inspector app from Google Play.
  • Or use the command: adb shell pm list packages | grep "miui" (will display a list of all packages with miui in the title).

πŸ’‘

Removal via ADB does not require root rights, but is valid only for the current user. After resetting settings or updating the firmware, applications can return.

6. How to remove the root-rights application (for experienced)

If your Xiaomi has root access (for example, after unlocking the bootloader and installing Magisk), you can uninstall any application, including critical system components.This is the riskiest method - an error can lead to a "brick" (inoperability) of the device.

Instructions:

  • πŸ“± Install a root-enabled file manager (such as Root Explorer or Solid Explorer).
  • πŸ” Go to the folder. /system/app/ or /system/priv-app/ (This is where system applications are stored).
  • πŸ—‘οΈ Find a folder with the name of the application being removed (such as MiBrowser) and delete it.
  • πŸ”„ Reset the device.

⚠️ Note: Before deleting, back up the folder /system through TWRP Or another custom recovery, removing the following packets is guaranteed to break the system:

  • com.android.settings (Settings),
  • com.miui.home (Luncher) MIUI),
  • com.android.phone (phone calls).

An alternative way is to use the command in Terminal Emulator (requires root):

su


mount -o rw,remount /system




rm -rf /system/app/NameFolds




rm -rf /system/priv-app/Names




reboot

7. How to return a deleted or disabled application

If you realized after you uninstall or disable the app that it was needed, there are a few ways to get it back:

For applications disabled:

  • βš™οΈ Go to Settings. β†’ Annexes β†’ Application management.
  • πŸ” In the filter, select Unplugged.
  • πŸ”„ Click on the application and select Enable.

For remote system applications:

  • πŸ”„ Settings Reset: Returns all pre-installed apps but deletes your data. β†’ The phone. β†’ Resetting settings.
  • πŸ“₯ Manual Installation: Some system applications (such as Mi Calculator) can be downloaded as.apk from sites like APKMirror.
  • πŸ”§ Flashing: Install firmware via Fastboot or Recovery (will return all system files).

⚠️ Note: If the application has been removed through ADB flag-headed --user 0, You can get it back by team:

adb shell cmd package install-existing name.packet

FAQ: Frequent questions

❓ Can I remove the GetApps app (Mi App Store) without root?
Complete removal is possible via ADB command: adb shell pm uninstall -k --user 0 com.xiaomi.mipicks Note that after the firmware update, the application may return.
❓ Why does the app stay on the menu after removing the label?
You removed only the shortcut, and the app itself remained in the system. To remove it completely, use the methods in sections 3-6.
❓ How to remove the folder with applications from the main screen?
Press and hold the folder, then drag it to the Remove (Basket) area at the top of the screen. The applications from the folder will remain on the menu.
❓ Can I remove Google Play Services?
🚫 It's not recommended. It's a system application that's responsible for running Google services (account login, push notifications, geolocation) and deleting it will cause a malfunction of your smartphone. You can shut it down at most, but it will disrupt many of the functions.
❓ How to remove advertising in Xiaomi system applications?
Ads in Mi Browser, Mi Music and other apps are disabled in settings: Open Settings β†’ Apps folder β†’ App management. Select an app (e.g. Mi Browser). Disable Recommendations and Personalized Advertising options. To completely remove ads, you will need to disable the com.miui.systemAdSolution system application (only via ADB or root).