Android 15 breaks notifications listeners

Dimlos

Well-known member
It is true that security codes and the like will be marked as "Sensitive notification content hidden" but this does not mean that all notifications will not be available.
 

Jacob L

Moderator (Lawsonator)
It is true that security codes and the like will be marked as "Sensitive notification content hidden" but this does not mean that all notifications will not be available.
Many people use MacroDroid to forward SMS with codes to their email and so on. It's just another way to make Android more like IOS and take away user control. It should be up to me as it's my device. it's like having to lock our doors, we only do it because of thieves
 

Dimlos

Well-known member
From what I've tried, there doesn't seem to be any limit to getting notifications via adb.
adb shell dumpsys notification --noredact | grep android.text
 

MacroDroidDev

Administrator
Staff member
The following adb shell command should allow sensitive notifcation to be usable in MacroDroid on Android 15:

adb shell appops set com.google.android.gms RECEIVE_SENSITIVE_NOTIFICATIONS allow

You will need to force close MacroDroid and re-open it for this to work. I will add some info about this in the app into the v5.49 release.
 

Dimlos

Well-known member
I have confirmed that it works.
It is true that changing the settings will allow you to read notifications, but there may be other effects, so I can't say for sure.
 

Dimlos

Well-known member
Maybe I'm overthinking it, but wouldn't incorporating these methods into app affect Google Play Store review process?
 

Qarboz

Well-known member
The following adb shell command should allow sensitive notifcation to be usable in MacroDroid on Android 15:

adb shell appops set com.google.android.gms RECEIVE_SENSITIVE_NOTIFICATIONS allow

You will need to force close MacroDroid and re-open it for this to work. I will add some info about this in the app into the v5.49 release.
Is it also necessary for rooted phones?
 

AliNova

New member
The following adb shell command should allow sensitive notifcation to be usable in MacroDroid on Android 15:

adb shell appops set com.google.android.gms RECEIVE_SENSITIVE_NOTIFICATIONS allow

You will need to force close MacroDroid and re-open it for this to work. I will add some info about this in the app into the v5.49 release.

Replaced "com.google.android.gms" with "com.arlosoft.macrodroid" and it worked:
adb shell appops set com.arlosoft.macrodroid RECEIVE_SENSITIVE_NOTIFICATIONS allow
 
Top