Android Enthusiasts
Q&A for enthusiasts and power users of the Android operating system
Latest Questions
5
votes
1
answers
69218
views
How to fix "Notification access is not available" on Android Go?
I have a TECNO Spark 2 running on Android 8.1 Oreo (**Go Edition**). Every time I try to install apps that require notification access, it says that the feature is not available. ![A message saying "This feature is not available on this device" when opening Notification access on Android Go][1] How...
I have a TECNO Spark 2 running on Android 8.1 Oreo (**Go Edition**). Every time I try to install apps that require notification access, it says that the feature is not available.
How to fix it?

Derick
(51 rep)
Oct 1, 2018, 06:25 PM
• Last activity: Sep 16, 2025, 06:33 AM
11
votes
0
answers
4153
views
Interact with notification action from ADB Shell
I have an Android(7) phone [also fine if you can provide a solution for Android 10] and a Linux pc. By enabling USB debugging and using the terminal of my pc, I am able to read the notifications of my phone using the command: ```adb shell dumpsys notification --noredact``` Now, there are some notifi...
I have an Android(7) phone [also fine if you can provide a solution for Android 10] and a Linux pc. By enabling USB debugging and using the terminal of my pc, I am able to read the notifications of my phone using the command:
shell dumpsys notification --noredact
Now, there are some notifications in Android in which we can interact with the app directly from the notification. For example, in a WhatsApp notification, there are usually two buttons: *Reply* & *Mark as read*. On YouTube, there are options like *Play, Turn off, Watch later*. In the output of the above command, these options are visible in the following form:
actions={
"Reply" -> PendingIntent{6becf48: PendingIntentRecord{87b8050 com.whatsapp startService (whitelist: +30s0ms)}}
"Mark as read" -> PendingIntent{c1661e1: PendingIntentRecord{b8e3249 com.whatsapp startService (whitelist: +30s0ms)}}
}
I have two questions:
1. Can we interact with these options from adb shell? For example, is there any command like shell 'Message to be sent in WhatsApp with reply option'
which will send the text as a reply in WhatsApp without opening the app?
2. Is it possible to swipe the notifications using any ADB command? (Not the shell input swipe x0 y0 x1 y1
, it requires to unlock the phone each time)
Thank you in advance!
**Edit:**
Here is what I found that may be relevant to this question.
I think that I have to somehow launch the specific intent linked to the mentioned PendingIntent id (in this case
or
)
Using the command shell dumpsys activity intents > output.txt
and then searching for
in .txt
, I found the name of the intent. It was as follows:
* PendingIntentRecord{87b8050 com.whatsapp startService (whitelist: +30s0ms)}
uid=10104 packageName=com.whatsapp type=startService flags=0x0
requestIntent=act=com.whatsapp.intent.action.DIRECT_REPLY_FROM_MESSAGE dat=content://com.whatsapp.provider.contact/contacts/2256 cmp=com.whatsapp/.notification.DirectReplyService (has extras)
whitelistDuration=+30s0ms
Now I think that it may be possible to launch the intent .whatsapp.intent.action.DIRECT_REPLY_FROM_MESSAGE
using shell am
command, and passing the intent id and message as some parameters.
(Just like we can launch WhatsApp from adb with
command, it should be possible to launch the pendingIntent also.)
**Edit 2:**
Using this command:
adb shell am startservice -a com.whatsapp.intent.action.DIRECT_REPLY_FROM_MESSAGE -d content://com.whatsapp.provider.contact/contacts/2256 -n com.whatsapp/.notification.DirectReplyService --es 'com.whatsapp.Intent.EXTRA_TEXT' 'Hi. Okay.'
The output was as follows:
Starting service: Intent { act=com.whatsapp.intent.action.DIRECT_REPLY_FROM_MESSAGE dat=content://com.whatsapp.provider.contact/contacts/2256 cmp=com.whatsapp/.notification.DirectReplyService (has extras) }
Error: Requires permission not exported from uid 10104
Soham Saha
(111 rep)
Oct 25, 2020, 02:22 PM
• Last activity: Sep 15, 2025, 10:05 PM
0
votes
0
answers
19
views
Apps that allows me monitor a website and send pop up notifications
Hi pls I have tried anytracker(paid for the platinum plan), webalert(paid for the pro version I.e webalertxp which was saying an error with the expansion pack so I couldn't use it) but they didn't work the anytracker works on text and numbers. And the website I want to watch is more of like a bar ch...
Hi pls I have tried anytracker(paid for the platinum plan), webalert(paid for the pro version I.e webalertxp which was saying an error with the expansion pack so I couldn't use it) but they didn't work the anytracker works on text and numbers.
And the website I want to watch is more of like a bar chat that keeps on changing colours. I initially paid for the pro of the above apps because they do check for updates in the website every 1 minute not like other websites or apps including the pro version that has as low as 5 minutes.
Pls I would appreciate if anyone that recommend to me any app or anything that can allow me to check updates on a website as low as 1 minute and send pop up notifications as soon there's a change or update in the website, I even tried using termux app to monitor the website and send pop up with the help of Ai using coding but it didn't work
Somtochukwu
(1 rep)
Sep 10, 2025, 07:01 PM
• Last activity: Sep 10, 2025, 08:29 PM
0
votes
1
answers
476
views
How do I organize notifications on a Galaxy Note 10 - Separate Messages from System Nots, Different Sounds, etc
Just switched from iPhone to my Note10 and I love it. However what drives me crazy is that I get tons of system notifications that all pool in the Notification bar. However, to be honest I only really want to see personal notifications there, like messages and so on, System Notifications better only...
Just switched from iPhone to my Note10 and I love it. However what drives me crazy is that I get tons of system notifications that all pool in the Notification bar. However, to be honest I only really want to see personal notifications there, like messages and so on, System Notifications better only if I request to see them. How do I separate system notifications and message notifications? Also how do I specify different sounds, so I hear if it's a WhatsApp or Insta or Facebook ...
Also, how do I make these notifications appear on the locked screen, like they do on the iPhone?
haemse
(111 rep)
Nov 21, 2019, 01:49 AM
• Last activity: Aug 17, 2025, 10:37 AM
5
votes
1
answers
70158
views
Allowing alarms to sound during calling states ( phone / skype / Discord )
### How can I allow alarms to sound off while my phone is in a calling state? When I'm not in a call alarms sound as you'd expect them to. When I *am* in a ( Skype, Discord, Phone ) call the phone simply plays a "beep" sound instead of actually sounding off the alarm. I have the Phone call alerts se...
### How can I allow alarms to sound off while my phone is in a calling state?
When I'm not in a call alarms sound as you'd expect them to.
When I *am* in a ( Skype, Discord, Phone ) call the phone simply plays a "beep" sound instead of actually sounding off the alarm.
I have the Phone call alerts setting "notify during calls" enabled, but it doesn't seem to have any effect whatsoever.
I'm using the default clock app for the alarm, so it's fairly unlikely that it's an issue with the alarm registering itself with the system as an alarm ;p
I'm tentatively confident that this only started after updating to Android 6, but I don't actually have anything factual to back that up.
If it helps, I'm using a Samsung Galaxy S5 SM-G900V
I've spent several hours researching this and thus far I've been unable to locate a solution. I feel like it might be related to an Android in-call audio policy, but I'm hoping it's not ( because that would mean that it's not something that I can change. )
fire
(151 rep)
Aug 3, 2016, 09:02 AM
• Last activity: Aug 11, 2025, 04:02 PM
1
votes
0
answers
63
views
Bypass silent mode or enable vibrate on do not disturb
I’m using a variant of LineageOS, and I keep my phone in silent mode almost all the time because I don’t like ringing phones. For work reasons, I need certain contacts to be able to bypass silent mode so that their calls actually ring (so I don’t miss them). I know that Android’s *Do Not Disturb* mo...
I’m using a variant of LineageOS, and I keep my phone in silent mode almost all the time because I don’t like ringing phones.
For work reasons, I need certain contacts to be able to bypass silent mode so that their calls actually ring (so I don’t miss them).
I know that Android’s *Do Not Disturb* mode allows exceptions, and if I enable DnD, it works — but I avoid DnD because it also blocks all other notifications and vibrations, which I still want to receive.
**My question:**
- Is there a way to make the phone behave like silent mode (still
vibrate and show all notifications) while letting selected contacts
ring through?
- Alternatively, is there a way to bypass silent mode for specific
contacts without using DnD?
I’m surprised this isn’t simpler, since it seems like something many people would want to do.
Kiwy
(191 rep)
Aug 7, 2025, 02:14 PM
• Last activity: Aug 10, 2025, 12:50 AM
0
votes
1
answers
5632
views
Instagram LED Notifications
I have a custom ROM on my S3, but that shouldn't really be the issue here. I am on JB 4.2.2. With my custom ROM I am able to set up different colors of the LED notification for each app that I want. However, this works for every single app I get notifications for except for Instagram. I still get th...
I have a custom ROM on my S3, but that shouldn't really be the issue here. I am on JB 4.2.2.
With my custom ROM I am able to set up different colors of the LED notification for each app that I want. However, this works for every single app I get notifications for except for Instagram. I still get the notifications for Instagram, the LED just doesn't light up when I receive them or they are still sitting in my tray. For Twitter I had to change the settings in the app itself to allow the LED to work, but for every other app, it has been default once I added the settings in my custom ROM. Instagram seems to be handling notifications a little bit differently from the other applications, because it doesn't wake up my phone when I get a notification either.
But, I have a desktop application that shows me a pop-up on my computer when I receive notifications on my phone, and it notifies me for every notification, even Instagram.
I want to know if there is anything that I can do within Instagram or maybe somewhere in the phones settings to enable the LED to light up when I receive a new notification from Instagram.
VarnerBeast14
(429 rep)
Jun 24, 2013, 06:48 PM
• Last activity: Aug 6, 2025, 10:04 PM
3
votes
3
answers
32454
views
Constant "<Untitled> Download unsuccessful." notifications
I'm constantly harassed by these *" Download unsuccessful."* notifications. [![ Download unsuccessful.][1]][11] After taking the above screenshot, I cleared the entire notifications list. Within the next three minutes (usually even less), the list was already overflowing again. [



voices
(217 rep)
Oct 5, 2017, 04:22 AM
• Last activity: Aug 3, 2025, 04:05 PM
4
votes
1
answers
4582
views
No Vibrate During Calls
Is there a way to get my phone to not vibrate during calls? I want it to vibrate for various notifications when I'm not on a call, but it's a bit startling with my phone up to my ear. I've found a few SMS apps that can do it, but I'm hoping for something general, across all notifications. Upon furth...
Is there a way to get my phone to not vibrate during calls? I want it to vibrate for various notifications when I'm not on a call, but it's a bit startling with my phone up to my ear.
I've found a few SMS apps that can do it, but I'm hoping for something general, across all notifications.
Upon further testing, it seems that my phone (
Moto G
, Android version 5.1) doesn't vibrate during a call by default. But sometimes, it messes up and allows the notification vibration to go through.
Jon
(281 rep)
Nov 17, 2017, 06:20 PM
• Last activity: Aug 1, 2025, 08:22 PM
2
votes
1
answers
13216
views
What does "Custom app notification" means in Notifications History?
My phone is a Samsung S23 Ultra running Android 14. Whenever I check my notifications history for WhatsApp on my Android phone’s Notification history, a few of my notification’s history states “Custom app notification”. [![notification history][1th]][1] The messages are not there. Also, when I open...
My phone is a Samsung S23 Ultra running Android 14. Whenever I check my notifications history for WhatsApp on my Android phone’s Notification history, a few of my notification’s history states “Custom app notification”.
The messages are not there.
Also, when I open the custom app notification and filter it for "Whatsapp", in my notification history it says “Media playback”.
What does this mean?

Ali Hashmi
(21 rep)
Mar 14, 2024, 04:46 AM
• Last activity: Jul 31, 2025, 10:05 AM
4
votes
2
answers
4285
views
Is there a way to group notifications by app?
My phone is running MIUI 12.5 (rooted if it matters) and some apps just push individual notifications so each notification I get, shows up in its own bubble instead of showing them all under a group of notifications for this same app. It's really hard since it takes up all my screen and if I want to...
My phone is running MIUI 12.5 (rooted if it matters) and some apps just push individual notifications so each notification I get, shows up in its own bubble instead of showing them all under a group of notifications for this same app.
It's really hard since it takes up all my screen and if I want to search for notifications from a certain app I have to go over all the other notifications from the other apps..
Is there a way to force notifications from the same app to be grouped together in my notification bar?
Ben Yaakobi
(133 rep)
May 15, 2021, 11:30 AM
• Last activity: Jul 28, 2025, 03:08 PM
0
votes
1
answers
1396
views
How to restore notification number badges on app icons on Samsung devices?
My Samsung Galaxy S22 stopped showing a number in the upper-left corner of the messages app when a new text message has arrived. I think these numbers have been called badges. Is there a way to restore the number notification? Have they been eliminated for another method of notifications?
My Samsung Galaxy S22 stopped showing a number in the upper-left corner of the messages app when a new text message has arrived. I think these numbers have been called badges.
Is there a way to restore the number notification? Have they been eliminated for another method of notifications?
ejbpesca
(129 rep)
Jul 30, 2023, 11:26 AM
• Last activity: Jul 22, 2025, 01:44 PM
1
votes
2
answers
172
views
How do I get Google Maps location sharing notifications on my second device
**TL;DR:** With two Android phones, how do I get arrival & departure location sharing notifications on my backup device, instead of the primary device? ---------- I have a primary and a backup Android phone. Recently, the primary one developed an issue with the display, rendering it mostly unusable,...
**TL;DR:** With two Android phones, how do I get arrival & departure location sharing notifications on my backup device, instead of the primary device?
----------
I have a primary and a backup Android phone. Recently, the primary one developed an issue with the display, rendering it mostly unusable, except with screen projection utilities (e.g. AirDroid and scrcpy). As a result, I switched to using the backup phone.
Over the last couple of days, I noticed that Google Maps was still sending notifications of arrival & departure (notification channel: *Google location sharing (friends)*) to my now unusable primary device. After searching the internet, I found [this answer](https://support.google.com/maps/thread/286527280?hl=en&msgid=286627449) , which essentially requires me to sign out of my Google account on the primary phone. This solution is untenable for me, as I intend to repair and return to using the primary device in a couple of weeks. In the meantime, however, I still want to receive notifications on the backup device. How do I achieve this?
Here are the things I've tried which didn't yield the expected result:
* Fully disabled location sharing on the primary phone
* Disabled all Google Maps notifications on the primary phone
* Cleared data and disabled Google maps on the primary phone
* Disabled & re-enabled location sharing on the backup phone
Alex Essilfie
(287 rep)
Jul 6, 2025, 07:48 AM
• Last activity: Jul 19, 2025, 12:05 PM
1
votes
0
answers
107
views
How to make Android automatically check for new Gmail emails more frequently and notify it with a sound?
I'm going to make another attempt to find a solution to this. This has been the bane of my life, all the time without interruption, since I bought my first "smart" phone in 2012. I've always had an Android. My current phone is a Samsung J6 dual-sim, so quite old. But a few years ago it was relativel...
I'm going to make another attempt to find a solution to this.
This has been the bane of my life, all the time without interruption, since I bought my first "smart" phone in 2012. I've always had an Android.
My current phone is a Samsung J6 dual-sim, so quite old. But a few years ago it was relatively new: in fact I may have bought it on the recommendation that upgrading might solve the problem. No.
Just today a client sent me an email and there was no notification for at least 4 hours. All the settings relating to Gmail are COMPLETELY correct. When I then sent myself an email to that address, yup, the notification sounded within less than a minute. The client in question was sending an email from France to me (in the UK). I struggle to believe this could be significant in 2025, but don't rule anything out. But it happens again and again and again.
Over those 13 years I have lost 000s of £ due to clients sending me an email (always Gmail) and me not receiving the notification in a timely manner. By "timely" I mean maybe within 30 minutes. Though why notifications shouldn't be received as fast as the emails themselves I have always failed to understand.
I have tried turning off battery optimisation and many, many other things. If you have a solution, please don't assume that a setting on your phone exists on my phone: it may, it may not.
I believe (not entirely sure) that the gmail ICON does in fact appear in the top left of the phone: i.e. the problem seems to be that the acoustic signal (notification) of an arrived email often does not sound, or sounds only very belatedly. For unknown reasons.
I'm a coder and am now inclined to see if I can develop an app, an extremely simple app, which, every minute or so, does a check to see whether this particular Gmail account has an email sitting there waiting to be read, and then MAKES A SOUND. I have never coded for Android and assume it would be quite annoying to develop this. If this is a possible solution surely someone must already have come up with something like it.
There is a Reddit question on this theme from 2 years ago. One answerer replies as follows:
> Android Gmail isn’t “checking” emails but is the Google Firebase Cloud Messaging pushing notifications to the device. That process should be instant, however for battery saving reasons Google (which made FCM as part of Google Mobile Services on your phone) decide to delay the display of some notifications including Gmail, on my device Gmail notifications are delayed until I unlock it. The solution will be using a local email client and keep that app open, or use another cloud based email client that pulls email to their server then use FCM to push to your phone, which less likely to cause delay.
It seems that this person's first language is probably not English, and I'm having difficulty understanding either the suggested technical problem or the suggested solution. If someone here believes this holds a possible key, please try and explain it to me: "a local email client": what might that mean? And could "battery saving reasons" still be the culprit even if I have the optimisation completely turned off (which I do)?
Any suggestions welcome.
***Later***
A couple of days of testing has in fact left me more frustrated than ever ... I simply don't understand.
On my phone (Samsung J6 dual-sim) I now have no fewer than 3 alternative email apps (in addition to Gmail): BlueMail, Thunderbird and K-9.
About 30 minutes ago I sent myself an email from another account (yahoo.co.uk) to my Gmail account (i.e. the one I use for my clients, where I want to get a sound notification every time a new email arrives).
THE ONLY app which actually sounded was Gmail. Neither Bluemail, Thunderbird nor K-9 made any sound at all... and no notification icon is showing other than the Gmail one.
In THEORY, Bluemail is set to "pull" ("fetch") emails every 3 minutes, and Thunderbird and K-9 are set to pull every 15 minutes. NONE of these apps is working at all.
Over the past couple of days, as I've been testing things, I've occasionally had the sound notification from Thunderbird. Hardly ever from Bluemail.
What could possibly explain these infuriating (apparent) failures of these apps to do what they're intended to do?
mike rodent
(113 rep)
Jun 30, 2025, 07:16 PM
• Last activity: Jul 3, 2025, 10:01 AM
4
votes
2
answers
73
views
Medical app notifications must stay LOUD
I normally keep my OnePlus 13 slider on the "Vibrate" setting as to not disturb others. Sometimes in the evening, I switch it to the "Ring" (loud) setting. I recently installed an app for a medical device, and I require the app to be loud at all times. I tried enabling "Allow in Do Not Disturb" but...
I normally keep my OnePlus 13 slider on the "Vibrate" setting as to not disturb others. Sometimes in the evening, I switch it to the "Ring" (loud) setting. I recently installed an app for a medical device, and I require the app to be loud at all times.
I tried enabling "Allow in Do Not Disturb" but this only takes effect when using Do Not Disturb, which stops all other notifications.
How can I set my medical app (or any app) to be loud AT ALL TIMES, while keeping all other apps on Silent, Vibrate, Ring (according to the slider)?
Steven
(241 rep)
Jun 9, 2025, 02:18 AM
• Last activity: Jun 14, 2025, 12:49 AM
0
votes
1
answers
76
views
Does anyone know where this ad come from? i open any app and it appears randomly, how to remove it?
Lately, I’ve been getting random pop-up ads on my Android device, even when I'm not actively using a browser. These ads appear over any app I’m using — YouTube, messaging, games, etc. It’s not limited to a specific app; they just appear at random times. Example: [![enter image description here][1]][...
Lately, I’ve been getting random pop-up ads on my Android device, even when I'm not actively using a browser. These ads appear over any app I’m using — YouTube, messaging, games, etc. It’s not limited to a specific app; they just appear at random times.
Example:
I haven't recently installed any sketchy apps, but I suspect one of the apps might be causing this in the background. It's super disruptive and annoying.
Has anyone experienced this before? How can I find the source of the ad and stop it permanently?

Fidz
(98 rep)
Jun 3, 2025, 11:20 PM
• Last activity: Jun 4, 2025, 09:16 AM
0
votes
0
answers
77
views
Random android app make beep sound at 9am everyday without any notification or UI - How to identify?
Everyday, my phone make beep sound for 3 seconds around 9am. There is no notification. No app visible activity. My phone is Oneplus 12 (Android 15). How do I identify the culprit app and give it 1 star rating?
Everyday, my phone make beep sound for 3 seconds around 9am.
There is no notification. No app visible activity.
My phone is Oneplus 12 (Android 15).
How do I identify the culprit app and give it 1 star rating?
CodePanda
(179 rep)
Jun 4, 2025, 07:06 AM
• Last activity: Jun 4, 2025, 07:51 AM
2
votes
2
answers
324
views
Retrieving app messages without opening the app
I am using a BlackBerry DTEK running Android 6.0. Is there a way to (offline) retrieve app messages (messages that appear on the top-right on the home screen with a small icon of the app) without opening the app itself? (or when the app doesn't store these messages) Or is there a way to store these...
I am using a BlackBerry DTEK running Android 6.0.
Is there a way to (offline) retrieve app messages (messages that appear on the top-right on the home screen with a small icon of the app) without opening the app itself? (or when the app doesn't store these messages) Or is there a way to store these messages?
Willemien
(131 rep)
Jul 20, 2017, 12:20 PM
• Last activity: May 12, 2025, 01:51 AM
1
votes
0
answers
67
views
How to display body in GMail notification?
I've recently switched to Android from iOS. I'm a bit annoyed that my Gmail notifications do not include any of the body. It only displays the subject. This is what it looks like (not my phone, but it gets the point across). You can see that it doesn't show the body at all. [

John Hon
(111 rep)
Apr 27, 2025, 09:08 AM
• Last activity: May 10, 2025, 11:03 PM
1
votes
1
answers
657
views
Turn off Android 16's easter egg
How do I turn off the spacecraft game in Android 16? It starts automatically when I put the phone on charge and gives me hundreds of notifications that can't be muted.
How do I turn off the spacecraft game in Android 16?
It starts automatically when I put the phone on charge and gives me hundreds of notifications that can't be muted.
Jack
(21 rep)
Apr 29, 2025, 06:28 AM
• Last activity: Apr 29, 2025, 01:09 PM
Showing page 1 of 20 total questions