How to permanently remove articles from the lock screen Xiaomi Redmi: a step-by-step guide

The lock screen on Xiaomi Redmi smartphones often turns into a feed of news, ads and unnecessary articles โ€” especially after MIUI updates. Even if you never clicked on these materials, the system continues to load them, consuming traffic and battery power. Worse, some โ€œrecommendationsโ€ open accidentally when unlocked, redirecting to the browser or app store.

Complicating the problem, Xiaomi regularly changes the settings in new shell versions. What worked on MIUI 12 may disappear into MIUI 14, and hidden settings appear instead of explicit switches. In this article, we will analyze 5 proven ways - from standard settings to advanced ADB tricks that are guaranteed to remove articles from the lock screen on any Redmi (including POCO, Redmi Note and flagship models).

Why do articles appear on the lock screen?

The Mipush Framework (aka com.xiaomi.mipush) has been integrated into MIUI since version 8, and is responsible for not only push notifications but also personalized content on the lock screen, and Xiaomi works with partners (like UC News, Dailyhunt) to deliver news cards, game ads, and even local promotions.

The list of content sources depends on the firmware region:

  • ๐ŸŒ Global firmware (Global) ROM): News from Microsoft Start, Yahoo Finance, local media.
  • ๐Ÿ‡จ๐Ÿ‡ณ Chinese firmware (China) ROM): Toutiao, Sohu, Alipay advertising.
  • ๐Ÿ‡ท๐Ÿ‡บ Russian firmware (Russia) ROM): Yandex.News, banners of SberMarket, Ozon.
  • ๐Ÿ‡ฎ๐Ÿ‡ณ Indian firmware (India) ROM): Content from Dailyhunt, Josh, Cricket News.

Important: Even if you turn off Personalized Recommendations in your settings, the service continues to work in the background, it collects data about your actions (which apps you open, how much time you spend on them) and adjusts the content. On some models (for example, Redmi Note 12 Pro+), articles appear even after you completely reset, which is embedded in the firmware at the system application level.

โš ๏ธ Attention: If you are using POCO Launcher or third-party themes, it doesn't block articles from loading. they just can be displayed in a different way (like miniature banners at the bottom of the screen, for example).

Method 1: Disconnect via standard MIUI settings

To start with, the most obvious method is that it works on most MIUI 12-14 devices, but the path to settings may vary depending on the version. If you have a customized Redmi firmware (like the Pixel Experience), it won't work.

Instructions:

  1. Open the Settings โ†’ Lock screen.
  2. Scroll down to the "Style of the Lock Screen" section and click on it.
  3. Select the current style (usually "Standard" or "MIUI").
  4. In the menu that opens, find the โ€œShow recommendationsโ€ (or โ€œNews and Weatherโ€) switch and turn it off.
  5. Save the changes and restart the device.

If there is no such item, try an alternative path:

  1. Go to Settings โ†’ Applications โ†’ Application Management.
  2. In the search, type mipush and select "MIUI push notification service".
  3. Click "Stop" (not "Stop"!).
  4. Confirm the action and restart the phone.

Is the โ€œPersonalized Recommendationsโ€ switch disabled in the Xiaomi | account settings?

Is the firmware updated to the latest version (mapping bugs are patched)|

Are there any active themes with built-in advertising (for example, "MIUI Super Wallpapers")|

Are notifications for the browser and news app disabled"-->

On some models (e.g. Redmi 10 or POCO X3 Pro) notifications from messengers may disappear after the service is turned off. To avoid this, use method 3 with ADB.

Method 2: Remove cache and system application data

If articles continue to appear even after disabling recommendations, the problem could be cached data.System applications Xiaomi aggressively cache content and sometimes it needs to be manually cleaned.

Follow the instructions:

  1. Open Settings โ†’ Applications โ†’ Application Management.
  2. In the search bar, type in the browser and select "Browser" (usually com.android.browser or com.mi.globalbrowser).
  3. Click on "Storage" โ†’ "Clear Data" and "Clear Cache".
  4. Repeat steps 2โ€“3 for the following applications: ๐Ÿ“ฐ "News" (com.miui.weather2 or com.miui.news) ๐ŸŒ "Push notification service MIUI" (com.xiaomi.mipush) ๐Ÿ›’ "GetApps" (Xiaomi app store, com.xiaomi.mipicks)

Reset the device.

AnnexPacket nameWhat to cleanEffects of consequences
browsercom.android.browserData + cacheBookmarks and history will drop
Newscom.miui.weather2Just the cache.Temporary weather data will disappear
GetAppscom.xiaomi.mipicksJust the cache.Advertising banners will be updated
Mipushcom.xiaomi.mipushJust the cache.Notifications from system applications may be missing

โš ๏ธ Note: On some devices (e.g. Redmi) K50) cleanup com.miui.weather2 It resets the weather widget on the home screen, and to restore it, you have to reset the location.

If the articles are back after a few days, then the Mipush service is activated again, in which case only method 3 (disable via ADB) or method 5 (install custom firmware) will help.

MIUI Global (official)|

MIUI China (Chinese)|

MIUI Russia (Russian)|

Custom (Pixel Experience, LineageOS, etc.)|

I don't know.-->

Method 3: Disconnect via ADB (for power users)

If standard methods donโ€™t work, youโ€™ll need to use Android Debug Bridge (ADB), a tool for debugging Android devices, which requires connecting your phone to your computer, but is guaranteed to delete articles on even the latest versions of MIUI 14.

What you need:

  • ๐Ÿ–ฅ๏ธ Computer with Windows/Linux/macOS.
  • ๐Ÿ“ฑ Cable USB Type-C (original so that there are no connection problems).
  • ๐Ÿ”ง Utility. ADB (You can download from the official Android website).
  • โš™๏ธ Included debugging by USB phone-on.

Step-by-step:

  1. Activate Developer Mode: Go to Settings โ†’ About the phone. Press 7 times on "Version" MIUI", Notice: โ€œYou have become a developer!".
  2. Turn on USB debugging: Return to Settings โ†’ Additional โ†’ Developer. Activate the USB debugging switch.

Connect the phone to your computer and confirm the debugging permission.

cmd

Terminal

adb shell pm uninstall --user 0 com.miui.weather2


adb shell pm disable-user --user 0 com.xiaomi.mipush




adb shell pm hide com.miui.news

Reset the device.

๐Ÿ’ก

If articles still appear after completing commands, try to additionally disable the service com.miui.systemAdSolution - it is responsible for system advertising in MIUI.

What these teams do:

  • ๐Ÿ—‘๏ธ uninstall --user 0 โ€” Delete the application for the current user (without root rights).
  • ๐Ÿšซ Disable-user โ€“ disables the service, but does not delete it completely.
  • ๐Ÿ‘๏ธ hide โ€“ hides the application from the list (does not work on all versions) MIUI).

โš ๏ธ Note: On some devices (e.g. Redmi Note 11 Pro)+) When you turn off com.xiaomi.mipush, notifications from Mi Fit and Mi Home stop working, and to fix this, you will have to manually allow notifications for these applications in the settings.

Method 4: Using third-party launchers

If you don't want to dig into settings or use ADB, you can simply replace the standard launcher with an alternative one. Most third-party shells (for example, Nova Launcher, Lawnchair) do not display system news on the lock screen.

The best options for Xiaomi Redmi:

  • ๐ŸŒŸ Nova Launcher โ€“ supports gestures, customization of icons and hides system widgets.
  • ๐Ÿ“ฑ Lawnchair is a lightweight open source launcher that blocks advertising at the interface level.
  • ๐Ÿ”„ Microsoft Launcher โ€“ Integrates with Windows, but doesnโ€™t show Xiaomi news.
  • ๐ŸŽจ Action Launcher โ€“ Allows you to disable all system widgets, including weather and news.

How to install and configure:

  1. Download the selected launcher from Google Play.
  2. Open it and install it as the default launcher (the system will prompt you to do this when you first start).
  3. Go to the launcher settings and turn off the option โ€œShow widgets on the lock screenโ€ (the name may differ).
  4. To completely delete articles, also disable the system weather widget: Click the empty space on the home screen โ†’ "Widgets." Find the "Weather" or "News" widget and drag it to the basket.

What if the launcher does not block articles?
Some launchers (e.g, POCO Launcher) simply mask the system widgets, but do not remove them completely. In this case: 1. Install a launcher with support ADB-teams (e.g. Tasker) + AutoInput). 2. Use ADB, to disable system services (see method 3). 3. Check whether the option "Show system notifications" is enabled in the launcher settings.

The downside of this method is that system notifications (such as low battery power) may not be displayed correctly, and some MIUI features (such as Double-Push to Lock) will no longer work.

Method 5: Install custom firmware (for advanced)

If none of these things worked, the radical solution is to install custom firmware, which would completely remove all Xiaomi system services, including Mipush and news widgets, but requires unlocking the bootloader and may be unwarranted.

Suitable firmware for Redmi:

  • ๐Ÿค– Pixel Experience โ€“ pure Android without unnecessary services.
  • ๐Ÿ“ฑ LineageOS โ€“ stable firmware with open source.
  • โšก ArrowOS โ€“ Optimized for Performance.
  • ๐Ÿ”ง MIUI Pro - modified version MIUI publicity.

Step-by-step:

  1. Unlock the bootloader via Mi Unlock Tool (requires permission from Xiaomi, waiting can take up to 7 days).
  2. Install TWRP Recovery (instructions are available on the XDA Developers forum for your model).
  3. Download firmware (e.g. Pixel Experience) and GApps (if you need Google services).
  4. Load to TWRP, backup and run the firmware.
  5. After installation, reset the settings (Wipe Dalvik/Cache).

โš ๏ธ Note: On some models (Redmi Note 10 Pro, POCO F3) After installing custom firmware, Widevine ceases to work L1 โ€” This means that Netflix, Disney+ Other services will only show videos in 480p. To fix this, you need to flash a special patch Widevine Fix.

The advantages of custom firmware:

  • โœ… Complete lack of advertising and news.
  • โœ… More smooth operation of the system (no background processes) MIUI).
  • โœ… Regular security updates.

Cons:

  • โŒ Loss of warranty (if you do not return the original firmware before visiting the service).
  • โŒ Possible camera bugs, NFC or sensors (depending on the firmware).
  • โŒ No branded features MIUI (For example, "Dual Apps" or "Game Turbo Mode").

๐Ÿ’ก

Custom firmware is a last resort, and if you care about MIUI features (like gestures or themes), try 1-4 first.

Additional advice and answers to questions

Even after successful removal of articles, they can return after the MIUI update.

Prevention tips:

  • ๐Ÿ“ต Turn off auto-update system applications in Google Play.
  • ๐Ÿ”’ Use an ad blocker (such as Blokada or AdGuard) with a rule for api.ad.xiaomi.com domain.
  • ๐Ÿ“ฑ Regularly check the list of active services through Settings โ†’ Annexes โ†’ Application management โ†’ Three points. โ†’ Show system-based.
  • ๐Ÿ”„ If the articles are back, repeat method 3 (commands) ADB).

If you're Redmi with NFS (For example, corporate device, system applications can be protected by administrator policies, in which case only the firmware or contacting the administrator will help. IT-department.

FAQ: Frequent questions

Can I remove articles without root rights?
Yes, all of the methods in this article (except custom firmware installation) work without root. The most effective are method 3 (ADB) and method 4 (third-party launcher).
Why did Mipush stop receiving notifications from messengers after the shutdown?
com.xiaomi.mipush is used by some applications (e.g. Mi Fit, Mi Home) for push notifications. To fix this: Open notification settings for the problem application. Enable the option to "Show notifications" and "Allow background activity." Reboot your phone. If it doesn't work, use ADB to turn off only news features, not the entire service: adb shell pm disable-user --user 0 com.miui.weather2
How to return articles if they are suddenly needed?
To turn on the news display again: For method 1: go back to Settings โ†’ Lock screen โ†’ Lock screen style and turn on the Show recommendations switch. For method 3 (ADB): run the commands: adb shell enable pm com.miui.weather2 adb shell pm enable com.xiaomi.mipush Reboot the device.
Do these methods work at POCO?
Yes, all methods are suitable for POCO smartphones (e.g. POCO X3, POCO F4), as they run on the same MIUI shell. Except for the default POCO Launcher models (e.g. POCO F1), where the path to settings may be slightly different.
Can I delete articles permanently so they donโ€™t come back after updates?
Unfortunately, Xiaomi regularly returns news widgets in new versions of MIUI. To minimize risk: Disable auto-update system in settings. Use domain blocker (such as AdGuard) with the rule for api.ad.xiaomi.com. After each update, repeat method 3 (ADB).The only way to get rid of articles forever is to install custom firmware (see method 5).