Inscriptions under application icons - โ€œInstalledยป, ยซUpdatedยป, ยซRecommended" or advertising labels - irritate many users Android. They clutter the desktop, distract attention and often appear without the ability to turn off through standard settings. The problem is especially pressing for owners of smartphones Xiaomi (shell MIUI), Huawei/Honor (EMUI/Magic UI) and some models Samsung with a proprietary launcher.

In this article we will examine 5 proven methods removing application signatures - from simple settings to using ADBcommands and third-party launchers. Important: not all methods are universal - effectiveness depends on the version Android, shell and even device model. For example, on Pixel with a clean Android 14 it is enough to change the launcher, and on Redmi Note 12 you will need to disable system services through ADB.

Before you begin, please note: some actions require root access or activation developer mode. If you are a beginner, start with safe methods (sections 2-3), and experienced users can immediately move on to advanced solutions.

1. Disabling signatures in the launcher settings (without root)

Many manufacturers add the option to hide labels directly into the settings of the standard launcher. The problem is that it is often hidden or named in a non-obvious way. Here's where to look:

  • ๐Ÿ“ฑ Xiaomi (MIUI 12โ€“14): Settings โ†’ Desktop โ†’ Icon settings โ†’ Hide application labels. On some models (Redmi 10, POCO X3), the option is called โ€œHide labels under iconsยป.
  • ๐Ÿค– Huawei/Honor (EMUI 10+): Settings โ†’ Screen and wallpaper โ†’ Home screen โ†’ Icon settings โ†’ Application labels. Here you can disable both system labels (โ€œUpdatedโ€) and advertising (โ€œPopularยป).
  • ๐ŸŒ Samsung (One UI 4โ€“6): In the launcher One UI Home there is no option, but you can use alternative launcher (see section 3).
  • ๐Ÿ”„ Pure Android (Pixel, Motorola): Labels appear rarely, but if they exist - check Settings โ†’ Applications โ†’ Default Launcher โ†’ Advanced settings.

โš ๏ธ Attention: On some devices (Realme, Oppo) after disabling tags, they may appear again after a reboot. This is due to. operation of the system process com.android.systemui. The solution is to use method with ADB.

๐Ÿ“Š What Android shell do you have installed?
MIUI (Xiaomi/Redmi/POCO)
EMUI/Magic UI (Huawei/Honor)
One UI (Samsung)
Pure Android (Pixel/Motorola)
Other

2. Using alternative launchers

If the standard launcher does not allow you to remove signatures, the easiest way is to install a third-party one. Popular options:

  • ๐Ÿ† Nova Launcher (free/premium version): supports hiding any labels, flexible customization of icons and folders. In the settings, look for Nova Settings โ†’ Icons โ†’ Application Labels โ†’ Hide.
  • ๐ŸŽจ Lawnchair (open source): light launcher with the option "Hide text under icons" in the section Settings โ†’ Appearance.
  • ๐Ÿš€ Apex Launcher: suitable for older devices (up to Android 10), has the option "Remove signatures" in the desktop settings.
  • ๐Ÿ”ง Microsoft Launcher: hides tags automatically, but can show your own (โ€œRecentยป, ยซRecommendedยป).

How to install and configure:

  1. Download the launcher from Google Play (for example, Nova Launcher).
  2. After installation, click "Home" and select the new launcher as default.
  3. Go to the launcher settings (usually a long tap on the desktop table) and find the option to hide labels.
  4. If necessary, disable the system launcher: Settings โ†’ Applications โ†’ Default Launcher โ†’ Disable (do not delete!).

Download APK of the launcher (if not in the Play Market)

Make a backup copy of the desktop (via standard settings)

Disable battery optimization for the new launcher

Check compatibility with the Android version-->

โš ๏ธ Attention: On devices Huawei without services Google (for example, Huawei P50) some launchers may not work correctly. In this case, use AppGallery to install Lawnchair or Evie Launcher.

3. Disabling tags via ADB (without root)

If neither settings nor third-party launchers help, you can disable system tags via Android Debug Bridge (ADB)This method works on most devices, but requires connecting to a computer.

What you will need:

  • ๐Ÿ–ฅ๏ธ A computer with ADB drivers installed.
  • ๐Ÿ“ฑ Turned on developer mode and USB debugging on smartphone.
  • ๐Ÿ”Œ USB cable (preferably original).

Step-by-step guide:

  1. Connect your smartphone to the PC and open command line (cmd on Windows or Terminal on macOS/Linux).
  2. Check the connection with the command:
    adb devices

    The device serial number should appear.

  3. Run the command to disable tags (it works on MIUI, EMUI, ColorOS):
    adb shell pm hide com.miui.home/com.miui.home.launcher.CommonIconBadge

    For Samsung One UI use:

    adb shell pm hide com.sec.android.app.launcher/com.android.launcher3.uioverrides.BadgeRenderer
  4. Restart the device.

On some devices (for example Xiaomi 13 with MIUI 14) after updating the system, the tags may appear again. In this case, repeat the command or. use Tasker to automatically execute an ADB script on boot.

What to do if ADB does not see the device?

Make sure USB debugging is enabled in the developer settings.

Try a different USB cable (not all support data transfer).

Install drivers for your smartphone model (for example, for Xiaomi - Mi PC Suite).

Restart your computer and smartphone, then reconnect.

4. Editing system files (root required)

If you have root access, you can remove tags by editing system files. This method is risky - incorrect actions can lead to bootloop (loop loading). We recommend making a backup copy before starting.

Instructions for MIUI (tested on Redmi Note 10 Pro):

  1. Install a file manager with root support (for example, Root Explorer or Solid Explorer).
  2. Go to the path:
    /system/priv-app/MiuiHome/MiuiHome.apk

    Create a backup copy file.

  3. Open MiuiHome.apk in the editor APK Editor and find lines with label text (for example, "Installedยป, ยซUpdatedยป).
  4. Replace the text with a space or delete the lines. Save the changes and restart the device.

For EMUI (Huawei/Honor):

  • Open the file /system/priv-app/HwSystemUI/HwSystemUI.apk.
  • Find resources with names badge_* (for example, badge_new, badge_update) and delete them.
  • Clear the launcher cache: Settings โ†’ Applications โ†’ Launcher โ†’ Storage โ†’ Clear cache.

โš ๏ธ Attention: After updating the system, changes may be reset. To avoid this, use the module Magisk to block updates to system applications.

๐Ÿ’ก

Before editing system files, check them for a digital signature. If the signature is broken, Android may block the application from launching. utility SignAPK for re-signing after changes.

5. Hiding labels using Tasker or Automate

If labels appear due to the operation of system processes (for example, com.miui.systemAdSolution on Xiaomi), they can be blocked automatically using Tasker or Automate. This method does not require root, but can reduce the stability of the shell.

Instructions for Tasker:

  1. Install Tasker and plugin AutoInput (to simulate clicks).
  2. Create a new task with action Shell โ†’ Run Shell.
  3. Enter a command (example for MIUI):
    pm disable-user --user 0 com.miui.systemAdSolution
  4. Add a trigger Event โ†’ System โ†’ Device Bootso that the command is executed every time the smartphone is turned on.

Alternative - Automate:

  • Create a new thread with block Shell command.
  • Specify a command (for EMUI):
    pm hide com.huawei.android.launcher/com.huawei.android.launcher.BadgeProvider
  • Add a block On device boot to run automatically.

โš ๏ธ Attention: Disabling system processes may cause some functions to not work (for example, notifications about application updates). Before use, check the impact on stability for 1-2 days.

6. Removing advertising tags (for Chinese firmware)

On devices with Chinese firmware (Xiaomi for the Chinese market, Huawei without GMS) often appear under the icons advertising tags (ยซHot gamesยป, ยซPromotions") They can be removed in two ways:

Method 1: Disabling system applications

  • Go to Settings โ†’ Applications โ†’ Manage applications.
  • Find and disable (not delete!):
    • ๐Ÿ“Œ com.miui.systemAdSolution (on Xiaomi)
    • ๐Ÿ“Œ com.huawei.android.hsf (on Huawei)
    • ๐Ÿ“Œ com.heytap.mcs (on Oppo/Realme)
  • Reboot the device.

Method 2: Blocking via hosts file

  1. Install the application for editing hosts (for example, Hosts Editor).
  2. Add the following lines:
    127.0.0.1 ad.mi.com
    

    127.0.0.1 api.ad.xiaomi.com

    127.0.0.1 sdkconfig.ad.xiaomi.com

    For Huawei:

    127.0.0.1 adserver.hicloud.com
    

    127.0.0.1 adn.adservice.hicloud.com

  3. Save the changes and restart your smartphone.

โš ๏ธ Attention: Editing a hostsfile without root is only possible on Android 9 and below. New versions will require Magisk or a patch via LSPosed.

Method Requires root Works on Risks Difficulty
Launcher settings โŒ No MIUI, EMUI, One UI Low โญ
Third-party launcher โŒ No All shells Low โญโญ
ADB commands โŒ No MIUI, EMUI, ColorOS Medium (may reset after update) โญโญโญ
Editing system files โœ… Yes Any firmware High (risk of bootloop) โญโญโญโญ
Tasker/Automate โŒ No MIUI, EMUI Medium (may interfere with stability) โญโญโญ
๐Ÿ’ก

The most universal and safe method is to install a third-party launcher (Nova Launcher, Lawnchair). It works on 90% of devices and does not require root or ADB.

FAQ: Frequently asked questions

โ“ Why do the tags appear again after updating MIUI?

Manufacturers often reset the launcher settings when updating the system. data-i="249">Repeat

  • Repeat ADB command after the update.
  • Use Tasker to automatically execute the command upon boot.
  • Install a third-party launcher (for example Nova Launcher), which does not depend on system updates.
โ“ Is it possible to remove labels on Samsung One UI without root?

On Samsung s One UI the standard launcher does not allow you to hide tags. Options:

  1. Install a third-party launcher (Nova Launcher, Lawnchair).
  2. Use Good Lock (module Nice Catch can block some system notifications).
  3. Disable updates for launcher One UI Home to Google Play.

โš ๏ธ Methods from ADB to Samsung often do not work due to the protected system environment Knox.

โ“ Will the ADB method work on Android 14?

Yes, but with reservations:

  • The Android 14 requires confirmation of adb-commands via a notification on the smartphone.
  • Some manufacturers (for example, Xiaomi) block the disabling of system components through pm hide. In this case, use:
adb shell cmd package disable-user --user 0 com.miui.home

โš ๏ธ This command will disable the standard launcher - immediately after it install an alternative one (for example, Nova Launcher).

โ“ How to get the labels back if you need them?

Depending on the method:

  • If used launcher settings โ€”just turn the option back on.
  • If used ADB โ€”execute command:
    adb shell pm enable com.miui.home/com.miui.home.launcher.CommonIconBadge
  • If you edited system files โ€”restore the backup or reinstall the launcher via APK.
โ“ Why is there no option to hide labels on my phone?

Possible reasons:

  • You outdated firmware version (update the system).
  • Manufacturer removed the option in new shell versions (current for MIUI 14+ i EMUI 13+).
  • You are using modified firmware (for example, custom LineageOS), where the launcher is different.
  • Adds tags third-party application (check the list of installed apps for suspicious services).

Solution: try ADB method or install a third-party launcher.

If none of the methods helped, check whether a third-party application (for example, an antivirus or optimizer) is adding tags. As a last resort, there is a radical method: installing custom firmware (for example, Pixel Experience), where the tags are under. there are no icons by default.