How to hide the application on Xiaomi: from simple ways to advanced

Hiding apps on Xiaomi smartphones is a challenge that comes with users for a variety of reasons, from wanting to remove unnecessary system utilities to having to hide personal information from prying eyes. Unlike iOS, where functionality is limited, MIUI offers several built-in tools to mask programs. However, they are not all equally effective: some simply remove the icon from the desktop, others completely block access to the application without a password.

In this article, we will discuss 5 working methods, from basic (available even for beginners) to advanced (requires superuser rights or ADB), and pay special attention to the nuances for different models: Redmi Note 12, POCO F5, Xiaomi 13T and other devices on MIUI 14/15.

1. Built-in "Hidden Applications" function in MIUI

The easiest way is to use the regular firmware tool, which is available on all Xiaomi devices with MIUI 12 and later, including Redmi, POCO and Black Shark models, and does not remove the program, but only hides its icon from the main menu and search.

To activate this mode:

  1. Open the Settings β†’ Applications.
  2. Tap it on Application Management.
  3. Select Hidden Applications (on some firmware, the item is called Hide Apps).
  4. Check the boxes next to the programs you want to hide and confirm your choice.

⚠️ Note: Hidden applications will still appear in the list of all installed programs (Settings) β†’ Annexes β†’ Application management requires additional manipulation to hide them completely (see section on the application management section). ADB).

πŸ“Š What Way to Hide Apps You Use More Often?
Built-in MIUI function
Third-party launcher
ADB-team
Ruth-Right.
Never hid it.
  • βœ… Pros: No need to root or connect to a PC, reversible process.
  • ❌ Cons: The application remains in the system and can be found through a search by settings.
  • πŸ”„ Feature: On POCO-The path may be different: settings β†’ Additionally. β†’ Hidden applications.

2. Use of the second space (Dual Apps)

Dual Apps (or Second Space) is originally designed to clone messengers, but it can be adapted to hide programs, the essence of the method: you create a separate user profile, where you install "secret" applications, and then hide the second space itself.

Instructions:

  1. Go to Settings β†’ Applications β†’ Dual Apps
  2. Activate the function and follow the setup wizard (reboot will be required).
  3. After creating the second space, install the necessary applications in it.
  4. Return to the main space and turn off the display of the second: Settings β†’ Lock screen and password β†’ Second space β†’ Hide the switch icon.

Access to the second space is now possible only through:

  • πŸ”‘ Entering a password/fingerprint in the lock menu (if Quick Switch option is activated).
  • πŸ“± Special gesture (configured in Settings) β†’ Additionally. β†’ Gestures).

πŸ’‘

If you forget the password from the second space, you can reset it only through a full reset settings (Settings β†’ About the phone β†’ Reset settings).

3. Third-party launchers with concealment function

If the built-in MIUI tools don't suit you, the alternative is to install an alternative launcher.

LauncherHiding functionNeed root?Download link
Nova LauncherHiding icons through Long Press β†’ Change β†’ Hide❌ No.Google Play
Apex LauncherSettings menu β†’ Hide applications❌ No.Google Play
POCO LauncherBuilt-in Category Options β†’ Hidden❌ No.Pre-installed on POCO-device
Rootless LauncherComplete root-free hiding (requires ADB)⚠️ Partially.GitHub

⚠️ Note: When using third-party launchers, hidden applications may become visible after updating the firmware or resetting the launcher to the factory settings.

A critical nuance for MIUI 14+: Some launchers (like Nova) may conflict with system memory optimization. To avoid spontaneously closing the launcher, add it to the exception list: Settings β†’ Battery β†’ Battery Optimization β†’ All applications β†’ Select Launcher β†’ No restrictions.

4. Hiding through ADB (no root)

For advanced users ready to connect a smartphone to a PC, there is a method using Android Debug Bridge (ADB) that allows you to completely hide the application from the system, including its display in the settings. Works on all Xiaomi devices with the unlocked bootloader.

Step-by-step:

  1. Activate Developer Mode: Settings β†’ About Phone β†’ MIUI version (tap 7 times).
  2. Enable USB debugging in Settings β†’ Additional β†’ For developers.
  3. Connect your phone to your PC and execute the command: adb shell pm hide com.example.app (replace com.example.app with a real application package).
  4. To return the application, use: adb shell pm unhide com.example.app

πŸ” How to find out the application package?

  • πŸ“± App Inspector (app from Google Play).
  • πŸ’» Through ADB: adb shell pm list packages | grep β€œkeyword"
What if the ADB can’t see the device?
1. Make sure that Xiaomi drivers are installed ADB/Fastboot Tools (you can download it on the official website). 2. Try another one. USB-cable (original from Xiaomi). 3. In the menu for developers activate debugging by USB (security parameters) and confirm the PC permission. 4. Restart your phone and PC.

⚠️ Note: Xiaomi with a blocked bootloader (Redmi) 10A, POCO M4 Pro and others.) ADB-In this case, you will need to unlock through the Mi Unlock Tool (risk of loss of warranty!).

5. Complete removal of system applications (requires root)

If you need to not just hide, but completely remove unnecessary system utilities (for example, Mi Browser, Mi Music, GetApps), super-user rights are required. This method is only suitable for advanced users, since careless actions can lead to a bootloop (cyclical reboot).

Instructions:

  1. Get root rights through Magisk (instructions for Xiaomi here).
  2. Install a file manager with root support (such as Root Explorer or Solid Explorer).
  3. Go to /system/app or /system/priv-app and find the folder with the name of the application.
  4. Rename the folder (add at the end of.bak) or delete it.
  5. Reset the device.

πŸ“Œ List of safe for removing system applications (MIUI 14/15):

  • 🌐 com.android.browser β€” Mi Browser
  • 🎡 com.miui.player β€” Mi Music
  • πŸ“¦ com.xiaomi.mipicks β€” GetApps
  • πŸ“Ί com.miui.videoplayer β€” Mi Video

Check backup of important data

Make sure that the battery charge is > 50%

Download the original firmware for your model

Disable the antivirus (it can block root access)

Create a recovery point in TWRP (if established)-->

⚠️ Note: Removing the following packets will cause the system to fail:

  • com.miui.home is a MIUI launcher.
  • com.android.settings – system settings.
  • com.miui.securitycenter is a security center.

Alternative methods: archiving and freezing

If deletion or concealment is not appropriate, consider freezing or archiving applications, which block the program but do not delete its data.

Method 1: Freeze with Titanium Backup (requires root)

  1. Install Titanium Backup from Google Play.
  2. Open the Backup tab and find the desired application.
  3. Slip it and select Freeze it.

Method 2: Archiving through ADB (without root)

Archiving command (the application will remain in the system, but will stop working):

adb shell pm disable-user --user 0 com.example.app

For return:

adb shell pm enable com.example.app

πŸ”Ή When to Use Archivalization?

  • πŸ”„ To temporarily shut down applications (such as Facebook or TikTok that consume battery).
  • πŸ›‘οΈ To block system utilities that cannot be removed (e.g. com.miui.analytics – Xiaomi statistics compiler).

πŸ’‘

Archiving through ADB is the safest way to disable system applications without root, and unlike uninstalling, it can always be canceled by one command.

FAQ: Frequent questions about hiding apps on Xiaomi

❓ Can you hide the application so that it does not appear even in the settings?
Yes, but only with ADB (section 4) or root rights (section 5), the built-in Hidden Applications feature in MIUI hides the icon only from the desktop.
❓ Why After Updating MIUI Hidden apps have reappeared?
This is a well-known MIUI 14/15 problem. After major updates, the system resets some settings. Solution: Repeat the concealment procedure. Use third-party launchers (section 3) - they are less susceptible to resetting.
❓ How to hide the app from parental control?
Parental control in MIUI This is done by creating a second space (Section 2) with a separate password. Using a hideout launcher (e.g. Nova Launcher). ⚠️ Note that the device administrator can see hidden programs through Settings. β†’ Accounts. β†’ Parental control β†’ Journal of Activity.
❓ Are these methods working on POCO and Black Shark?
Yes, but with nuances: POCO: There is a built-in concealment option (launcher settings β†’ hide apps) in the POCO Launcher firmware. Black Shark: Hidden apps may not be available. Use ADB or third-party launchers.
❓ Can I hide system applications (for example, Google Play)?
Partially. Google system apps (com.android.vending) can't be removed or hidden without root, but they can: Freeze via Titanium Backup (requires root). Disable updates: Settings β†’ Annexes β†’ Google Play β†’ Disable updates. ⚠️ Deleting Google Play Services will result in many features being disabled!