How to remove the inscriptions from the lock screen on Xiaomi: from standard settings to ADB

The lock screen on Xiaomi smartphones is often a source of annoyance: advertising slogans, notifications about MIUI services, or even accidentally added text spoil the appearance. Unlike other manufacturers, where such inscriptions are removed in two clicks, in MIUI firmware, this process can turn into a quest β€” especially if it is about system messages or blocked interface elements.

Complicating the problem, MIUI 13-14 versions have some of the labels tied to Mi Account services and are not removed from the standard menu. For example, β€œPowered by Xiaomi” advertising text or cloud sync notification can return after a reboot. In this article, we will discuss all the current ways – from basic settings to working with ADB and editing system files – including nuances for specific models (Redmi Note 12, POCO X5, Xiaomi 13T, etc.).

Why does the text appear on the lock screen and can it be removed?

The inscriptions on the Xiaomi lock screen are divided into three categories, each of which requires a different approach:

  • πŸ“± User text: manually added by you through settings (e.g. owner name or contact to contact) Removed in 10 seconds.
  • πŸ”§ System notifications: messages from MIUI Synchronization, updates or services (e.g., "Mi Cloud Backup") are often returned after a reset.
  • πŸ’° Advertising slogans: text such as "Powered by Xiaomi" or promotions. are associated with branded services and may require disconnection through the use of a website. ADB.

The biggest challenge is in the last two categories, like the Redmi Note. 11 Pro+ s MIUI 14 The words "Mi Fan Festival" can appear even after all notifications are disabled, because it is connected to the service com.miui.systemAdSolution. POCO F4 The same text can be part of the firmware and can only be deleted through file editing. lockscreen_overlay.apk.

⚠️ Note: On devices with an unlocked bootloader, some system labels may be part of custom firmware. MIUI In Settings β†’ About the phone – if it’s an informal build (e.g. xiaomi.eu), the methods in this article may not work.

πŸ“Š What text annoys you on the lock screen?
Slogans for advertising
System notifications
User signature
Other text

Method 1: Remove user text through standard settings

If you have added an inscription on the lock screen (such as a name or phone number for communication), it is easiest to delete it:

  1. Open the Settings β†’ Lock screen.
  2. Select "Signature on the lock screen" (some versions of MIUI called "Text of the owner").
  3. Delete all text in the field and click "Save".
  4. Restart the device (required!) as the changes may not apply immediately.

On Xiaomi 12S Ultra and other flagships with MIUI 14, this item may be hidden behind an additional menu. If you don't find an option, try the path: Settings β†’ Display β†’ Additional β†’ Lock Screen β†’ Signature.

β˜‘οΈ Checking before deleting text

Done: 0 / 4

⚠️ Note: On some models (Redmi) 10A, POCO M4 Pro) after deleting the text, an empty line or pencil icon may remain. MIUI 13.0.4 - Corrected by updating the firmware to 13.0.6+.

Method 2: Disabling system notifications on the lock screen

System messages like "Mi Cloud Backup" or "Security Update" are deleted through the notification settings, but in MIUI, this process is nuanced:

  1. Go to Settings β†’ Notifications and Status bar β†’ Notification management.
  2. Find the System Notifications app list (or com.android.systemui).
  3. Turn off the "Show on the lock screen" switch.
  4. For MIUI 14 versions, further disable "Show as pop-ups."

If the notification returns, check the following services (path: Settings β†’ Applications β†’ Application Management β†’ Three dots β†’ Show All):

  • πŸ”„ com.miui.cloudservice – responsible for cloud synchronization.
  • πŸ“± com.miui.systemAdSolution – Advertising Notices.
  • πŸ”’ com.android.providers.settings – system tips.

πŸ’‘

If you do not find the desired application in the list, turn on the display of system processes: click on the three dots in the upper right corner and select "Show system".

Xiaomi modelMIUI versionTypical β€œnon-removable” notificationsDecision
Redmi Note 11 Pro+13.0.4-13.0.6"Mi Fan Festival, "Update" MIUI"Disable com.miui.systemAdSolution via ADB
POCO X4 Pro14.0.2"Powered by Xiaomi"Editing lockscreen_overlay.apk
Xiaomi 12T13.0.8+"Device security"Disable notifications from com.miui.guardprovider

Method 3: Using ADB to remove system labels

If standard methods don’t work, you’ll need to connect to ADB (Android Debug Bridge), which works to remove advertising slogans and system notifications that aren’t disabled via the menu.

First, turn on the USB debugging:

  1. Go to Settings. β†’ The phone.
  2. Click on the MIUI version 7 times to activate the developer mode.
  3. Back to Settings β†’ Additionally. β†’ For developers.
  4. Turn on "Debugging by" USB" and confirm the authorization.

Now connect your phone to your PC and execute commands in the terminal (or PowerShell for Windows):

adb shell pm hide com.miui.systemAdSolution


adb shell pm hide com.miui.cloudservice




adb shell settings put global lock_screen_show_notifications 0

After you've completed the commands, restart the device. If the label is still there, check the list of active packets:

adb shell dumpsys package | grep "miui"
What if the ADB can’t see the device?
1. Make sure that Xiaomi drivers are installed (download from the official website). 2. Try another one. USB-cable (original from Xiaomi). 3. In the developer settings, turn on "Debugging by Xiaomi". USB (security settings)" and select "Always allow from this computer. 4. Reinstall ADB through SDK Platform Tools by Google.

⚠️ Attention: On Xiaomi 13/13 Pro MIUI 14 The pm hide command may not work due to HyperOS limitations, in which case you will need to edit the file. /system/priv-app/MiuiSystemUI/MiuiSystemUI.apk Magisk or Custom Recovery.

Method 4: Editing System Files (for Advanced)

If the inscription is sewn into system files (for example, "Powered by Xiaomi" on POCO F5), manual editing of APK is required. This method is only suitable for devices with an unlocked bootloader and Magisk installed.

Instructions:

  1. Download and install MT Manager (root rights required).
  2. Go to /system/priv-app/MiuiSystemUI/ and find the file MiuiSystemUI.apk.
  3. Open the file in MT Manager and go to res/values/strings.xml.
  4. Find a line with text (for example, <string name="lockscreen_powered_by">Powered by Xiaomi</string>) and remove it or replace it with a space.
  5. Save the changes and restart the device.

Alternatively, you can use the Magisk MIUI Lockscreen Tweaks module, which automates the process, but beware: incorrect editing of system files can lead to a bootloop.

πŸ’‘

Before editing system files, make sure to back up via TWRP or other custom recovery.This is the only way to restore the phone if you make a mistake.

Method 5: Reset the lock screen settings

If the label appears after the MIUI update or the application installation, resetting the lock screen settings will help, which does not affect user data, but will return all parameters to factory settings.

Instructions:

  1. Go to Settings β†’ System and device β†’ Resetting.
  2. Select "Reset the lock screen settings" (some models are called "Security Reset").
  3. Confirm the action and enter the password / pattern lock.
  4. After restarting, set up the lock screen again.

On the Xiaomi 12 Lite and Redmi K50, this item may not be available.

adb shell pm clear com.android.settings

This command will reset MIUI settings, including lock screen settings, but will not affect the installed applications and data.

Frequent Mistakes and How to Avoid Them

When removing text from the lock screen, users often face typical problems:

  • πŸ”„ The message comes back after the reboot, which means it's tied to the system service. ADB.
  • πŸ”’ You can’t change the text in the settings: the option is blocked by the policy MIUI. The solution is to use ADB or edit files manually.
  • ⚠️ After editing APK The phone won't turn on: it's likely that the file's integrity has been compromised. MIUI via Fastboot.
  • πŸ“± The inscription remained, but became translucent: it is a bug MIUI 14 Xiaomi 13/13 Pro. Helps disabling animations in the developer settings.

Another common mistake is trying to delete text through TWRP without backing up. Remember, if you delete a critical system file (e.g. framework-miui-res.apk), the phone may stop loading. Always check for compatibility with your model and version of MIUI.

πŸ’‘

Before any manipulation of system files, check for the official firmware for your model on the Xiaomi Firmware website.

FAQ: Answers to Frequent Questions

Can you remove the text "Powered by Xiaomi" without root rights?
On most models (Redmi Note 12, POCO X5), no. This text is sewn into the system APK and deleted only through ADB (pm hide command) or root-access file editing. Except for the Xiaomi 13 Ultra with MIUI 14.0.5+, where text can be disabled in the theme settings.
After the MIUI update, it says "Mi Fan Festival." How do you remove it?
This is an ad module of the service com.miui.systemAdSolution. Uninstall it via ADB: adb shell pm uninstall --user 0 com.miui.systemAdSolution If the command does not work, turn off notifications for this package manually (see Method 2).
I have a POCO F3 with custom firmware. Why doesn't any of it work?
Custom firmware (e.g., PixelExperience or LineageOS) uses its lock screen mechanism. Try: Find text settings in Settings β†’ Display β†’ Lock screen. Use the Magisk Lockscreen Customizer module. Contact the firmware developer for a patch.
Can I return standard text after editing system files?
Yes, if you backed up, restore the original file. MiuiSystemUI.apk or lockscreen_overlay.apk through TWRP or MT Manager, if there's no backup, ask me again. MIUI via Fastboot (instructions on the official website of Xiaomi).
Redmi 10C left an empty line after deleting the text. How's that?
It's a bug. MIUI 13.0.4. Update the firmware to 13.0.6+ or edit the file /system/media/theme/default/lockscreen_layout.xml (Find the line with the android:text parameter="" and remove it completely.