A constant stream of notifications on Android can turn a smartphone from an assistant into a source of stress. Even after turning off notifications from instant messengers and social networks, many users continue to receive annoying system notifications - about low battery, application updates, or โ€œhelpful tipsโ€ from Google Play Services. Unlike apps, where you just need to click โ€œStop Notifications,โ€ system alerts are hidden deeper in the settings.

This article will help you figure out how completely disable Android notifications from basic methods to advanced tricks using ADB hidden menus. We will look at solutions for pure Android (for example, on Google Pixel), shells MIUI (Xiaomi/Redmi/POCO), One UI (Samsung) and others. Important: some methods require administrator rights or an unlocked bootloader - we will warn you about this in advance.

If you are tired of the fact that your smartphone screen lights up every 5 minutes, and the notification panel has turned into a dump of unnecessary information, let's start cleaning. Let's start with the simplest methods and gradually move on to radical measures.

1. Basic notification settings in Android

The first step is to check the standard settings. Even if you've already tried turning off notifications, it's worth making sure you're not missing anything. In different versions Android the path may differ slightly, but the general logic remains the same.

Open Settings โ†’ Notifications (on some devices the path will be Settings โ†’ Applications and notifications โ†’ Notifications). Here you will see three key sections:

  • ๐Ÿ“ฑ Recent notifications โ€”a list of recent notifications with the ability to disable them for a specific application.
  • ๐Ÿ”• Application categories โ€”here you can set the priority of notifications (for example, make them โ€œsilentโ€).
  • โš™๏ธ Additional โ€”hidden settings, including system notifications.

Pay special attention to the item System notifications (can be called Android notifications or Google Play Services). Alerts about backups, device security, or updates are often hidden here. Google Play. Turn off anything that seems unnecessary - for example, "Tips for Android" or "App recommendations".

โš ๏ธ Attention: Disable notifications o critical security updates may put your device at risk. If you see notifications about new patches, it is better to leave them active.
๐Ÿ“Š What Android shell do you have installed?
Pure Android (Pixel, Motorola)
MIUI (Xiaomi/Redmi/POCO)
One UI (Samsung)
ColorOS (Oppo/Realme)
Other

2. Disabling notifications for specific applications

Even if you have turned off notifications in the application settings, some apps continue to send notifications through system channels. For example, Facebook or Instagram can use push notifications from Firebase Cloud Messaging (FCM). To block them completely:

  1. Go to Settings โ†’ Applications.
  2. Select the desired application (for example, Facebook).
  3. Click Notifications and disable all categories.
  4. Go back and click Permissions โ€” deny access to Display on top of other windows and Autostart.

For Samsung with shell One UI Add the application to sleep mode:

  1. Open Settings โ†’ Device maintenance โ†’ Battery.
  2. Click on the three dots at the top โ†’ Sleeping applications.
  3. Add an application to the list - this will limit its background activity.

Disable all categories of notifications in settings applications|Prohibit autorun|Prohibit showing on top of other windows|Add to sleep mode (for Samsung)|Disable background activity (for Xiaomi)-->

On Xiaomi (MIUI) additionally check Settings โ†’ Applications โ†’ Manage applications โ†’ Autorun and disable autorun for unnecessary apps. This will prevent them from running in the background and sending notifications.

3. Hidden system notifications: how to find and disable them

Some notifications are not displayed in the main list of settings. They may come from system services such as Google Play Services, Android System Intelligence or Device Health Services. To disable them:

  1. Go to Settings โ†’ Applications โ†’ Show all applications (or Show system ones).
  2. In the search bar, enter the name of the service, for example, Google Play Services.
  3. Click on the application โ†’ Notifications โ†’ disable all categories.

Here is a list of the most annoying system services that often send notifications:

Service Typical notifications Can it be disabled?
Google Play Services Security updates, backups, synchronization errors Partially (some categories are critical for the operation of the device)
Android System Intelligence "Helpful tips", recommendations for settings, alerts about new functions Yes, completely
Device Health Services Warnings about overheating, low battery, sensor faults Not recommended (critical alerts)
Download Manager Notifications about completion of downloads Yes
Media Provider Notifications about new media files (photos, videos) Yes
โš ๏ธ Attention: Disable notifications from Device Health Services may lead to the fact that you will not know about battery overheating or other critical problems. If you decide to do this, regularly check the temperature of the device manually (for example, through the app AIDA64).
How to return system notifications if something went wrong right?

If, after disabling services, the device began to work unstable (for example, SMS stopped receiving or applications are not updated), return the settings to default:

1. Go to Settings โ†’ System โ†’ Reset settings.

2. Select Reset notification settings (not to be confused with a full reset!).

3. Confirm the action.

This will return all notifications to their original state without losing data.

4. "Do not disturb" for a radical shutdown

If you need to temporarily turn off all notifications (for example, during sleep or an important meeting), use the mode Do not disturb (Do Not Disturb, DND). Unlike manual shutdown, this mode blocks even system notifications.

How to set it up:

  1. Open Settings โ†’ Sound and vibration โ†’ Do not disturb.
  2. Activate the mode and configure the rules:
    • ๐Ÿ”” Lock type: select Silent or Alarms only.
    • โฐ Schedule: set automatic switching on at night.
    • ๐Ÿ“ต Exceptions: allow calls from selected contacts or repeated calls.

On Samsung the mode is called Do not disturb, but has additional options:

  • ๐Ÿ”‡ Rules: you can create separate profiles for work, sleep, meetings.
  • ๐Ÿ“ฑ Hidden notifications: option hides notifications from the status bar (they remain in the curtain, but do not distract).

๐Ÿ’ก

Press and hold the Volume Down button to quickly turn on Do Not Disturb mode on most devices. Samsung This may not work - use the quick settings panel.

For complete control, install the application MacroDroid or Tasker. With their help, you can create automatic rules, for example:

  • Disable notifications when connected to a Wi-Fi network at work.
  • Block notifications from specific applications at a certain time.
  • Activate DND when you launch a specific application (for example, games).

5. Advanced methods: ADB and hidden settings

If standard methods do not help, you will have to use Developer tools. This method is suitable for advanced users and requires connecting the smartphone to the computer.

First enable USB debugging:

  1. Go to Settings โ†’ About phone.
  2. Click 7 times on Build numberuntil the message โ€œYou have become a developerโ€ appears.
  3. Return to Settings โ†’ System โ†’ For developers.
  4. Activate USB debugging.

Now connect the phone to the PC, install ADB (instructions are on the website Google for developers) and execute commands:

adb shell pm hide com.android.providers.downloads.ui # hides notifications about downloads

adb shell pm hide com.google.android.gms/.update.SystemUpdateActivity # disables notifications about Google Play Services updates

For disable all system notifications (carefully!):

adb shell settings put global heads_up_notifications_enabled 0

This command disables pop-up notifications (heads-up) that appear on top of the screen. After its execution, notifications will only come to the notification panel, without interrupting your work.

โš ๏ธ Attention: Commands adb pm hide can lead to unstable operation of the device if critical services are disabled. Before experiments make a backup copy via adb backup or manually.
๐Ÿ’ก

Use ADB only if standard methods do not work. Incorrect commands can disrupt the system, especially on devices with custom firmware.

6. Disabling notifications on rooted devices

If your smartphone has root access, you get full control over notifications. The most effective methods:

  • ๐Ÿ› ๏ธ File editing build.prop: add a line ro.config.nocheckin=1to disable checking for updates and related notifications.
  • ๐Ÿ—‘๏ธ Removing system applications: using Titanium Backup or Root Explorer can be deleted Google Play Services (but this is risky!).
  • ๐Ÿ”ง Use Xposed Framework: module NotifyClean allows you to flexibly configure notification blocking.

To remove specific notifications via ADB from root:

su

pm uninstall -k --user 0 com.google.android.gms # removes Google Play Services for the current user

On devices Xiaomi with root, you can disable the mi-account and associated notifications:

su

pm disable-user --user 0 com.xiaomi.account

โš ๏ธ Attention: Deleting or disabling system applications with root access can disrupt the operation of Google servicesincluding Play Market, Gmail i YouTube. Before such actions, make sure that you have a backup copy and the ability to restore the firmware.

7. Alternative solutions: third-party applications

If you donโ€™t want to delve into the settings, you can use specialized apps to manage notifications. The best options:

  • ๐Ÿ”‡ AutoNotification (plugin for Tasker): allows you to create complex rules for blocking notifications by time, location or running applications.
  • ๐Ÿ“ต Notification History Log: keeps a log of all notifications, helps identify the โ€œculpritsโ€ of spam.
  • ๐Ÿ›ก๏ธ Blokada: blocks advertising notifications at the DNS level (works without root).
  • ๐Ÿ” Niagara Launcher: an alternative launcher with flexible notification settings (you can hide them completely or show them only from selected applications).

To block notifications from specific words or phrases, use IFTTT:

  1. Create an applet with a trigger New notification from any app.
  2. Add a filter by keyword (for example, โ€œsaleโ€, โ€œdiscountโ€).
  3. Select as an action Mute notification.

If you are using Samsung Knox, check the settings Secure Folder โ€”sometimes notifications are duplicated due to synchronization between regular and protected space.

8. What to do if notifications return after a reboot

Some system notifications tend to return after rebooting the device or updating applications. This is due to the fact that the services Google Play or the smartphone manufacturer reset the settings to default. Solutions:

  • ๐Ÿ”„ Disable automatic application updates to Play Market:
  • Settings โ†’ Automatic application updates โ†’ Never.
  • ๐Ÿ“ฆ Freeze unnecessary system applications using Titanium Backup or App Quarantine (root required).
  • ๐Ÿ”ง Use ADB to permanently disable:
    adb shell cmd notification allow_list -a com.example.app -c CHANNEL_ID --disable

On devices Xiaomi the problem is often related to the service miui.system. To disable its notifications permanently:

  1. Install Activity Launcher from Play Market.
  2. Find the activity com.miui.systemAdSolution.SystemAdSolutionActivity.
  3. Open it and disable all advertising notifications.
โš ๏ธ Attention: On some firmware MIUI After major updates (MIUI 13 โ†’ MIUI 14), notification settings are reset. Before updating take screenshots of the current settingsto quickly restore them.
๐Ÿ’ก

If notifications return after resetting the settings, the problem is in the firmware. Try rolling back to a previous version or installing custom firmware (for example, LineageOS).

FAQ: Frequently asked questions about Android notifications

โ“ Why do notifications continue to arrive even if I disabled them in the application settings?

Some applications (for example, Facebook or AliExpress) use several notification channels. Check all categories in Settings โ†’ Applications โ†’ [Application name] โ†’ Notifications. They can also come through Firebase Cloud Messaging - in this case, only blocking at the system level will help (via ADB or root).

โ“ How to turn off low battery notifications?

This is a system feature notification from the service Device Health Services. To disable it:

  1. Go to Settings โ†’ Applications โ†’ Show system โ†’ Device Health Services.
  2. Click Notifications and disable the category Battery.
Warning: After this, you will not know when the battery is discharged to 15% or overheated.

โ“ Is it possible to disable notifications only for specific contacts in messengers?

Yes, most messengers support this function:

  • ๐Ÿ’ฌ WhatsApp: open the chat โ†’ click on the contact name โ†’ Notifications โ†’ Disable.
  • ๐Ÿ“ฑ Telegram: close the chat by swiping left โ†’ Disable notifications.
  • ๐Ÿ—จ๏ธ Viber: click on the contact's avatar โ†’ Notifications โ†’ Mute.

For SMS use the standard Messages application โ†’ click on the three dots in the chat โ†’ Notifications โ†’ Disable.

โ“ Why did notifications begin to appear duplicates after updating Android?

This is a common problem after major updates (for example, Android 12 โ†’ Android 13). Reasons:

  • Resetting notification settings to default.
  • Conflict between old and new notification channels.
  • Error in the service cache Notification Manager.

Solutions:

  1. Reboot device.
  2. Clear the application cache Settings โ†’ Applications โ†’ Settings โ†’ Storage โ†’ Clear cache.
  3. Reset notification settings in Settings โ†’ System โ†’ Reset settings โ†’ Reset notification settings.

โ“ How to return accidentally disabled system notifications?

If you have disabled critical notifications (for example, about calls or SMS), you can restore them like this:

  1. Go to Settings โ†’ Applications โ†’ Show system.
  2. Find the service responsible for notifications (for example, Telecom for calls or Messaging for SMS).
  3. Click Notifications and turn on all categories.

If that doesnโ€™t help, reset the settings notifications (see previous question) or reset the network settings (Settings โ†’ System โ†’ Reset settings โ†’ Reset mobile network settings).