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.
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:
- Go to
Settings โ Applications. - Select the desired application (for example, Facebook).
- Click
Notificationsand disable all categories. - Go back and click
Permissionsโ deny access toDisplay on top of other windowsandAutostart.
For Samsung with shell One UI Add the application to sleep mode:
- Open
Settings โ Device maintenance โ Battery. - Click on the three dots at the top โ
Sleeping applications. - 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:
- Go to
Settings โ Applications โ Show all applications(orShow system ones). - In the search bar, enter the name of the service, for example,
Google Play Services. - 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:
- Open
Settings โ Sound and vibration โ Do not disturb. - Activate the mode and configure the rules:
- ๐ Lock type: select
SilentorAlarms only. - โฐ Schedule: set automatic switching on at night.
- ๐ต Exceptions: allow calls from selected contacts or repeated calls.
- ๐ Lock type: select
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
DNDwhen 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:
- Go to
Settings โ About phone. - Click 7 times on
Build numberuntil the message โYou have become a developerโ appears. - Return to
Settings โ System โ For developers. - 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: Commandsadb pm hidecan lead to unstable operation of the device if critical services are disabled. Before experiments make a backup copy viaadb backupor 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 linero.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:
- Create an applet with a trigger
New notification from any app. - Add a filter by keyword (for example, โsaleโ, โdiscountโ).
- 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:
- ๐ฆ 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
Settings โ Automatic application updates โ Never.
On devices Xiaomi the problem is often related to the service miui.system. To disable its notifications permanently:
- Install Activity Launcher from Play Market.
- Find the activity
com.miui.systemAdSolution.SystemAdSolutionActivity. - 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:
- Go to
Settings โ Applications โ Show system โ Device Health Services. - Click
Notificationsand disable the categoryBattery.
โ 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:
- Reboot device.
- Clear the application cache
Settings โ Applications โ Settings โ Storage โ Clear cache. - 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:
- Go to
Settings โ Applications โ Show system. - Find the service responsible for notifications (for example, Telecom for calls or Messaging for SMS).
- Click
Notificationsand 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).