Posting a notification in case app is in background does not work for Texting component

According to the documentation Social

ReceivingEnabled
... If set to 2 (FOREGROUND) or 3 (ALWAYS) the component will respond to messages if it is running. .... In the case of 3 (ALWAYS), messages receive while the app is not running will show a notification.

In case ReceivingEnabled is set to 3 (ALWAYS) and the app is in the background, a notification should be displayed. This is not working for devices >= Android 14.

As far as I can see there are 2 issues

  • Starting from SDK 33 apps need to ask for post notification permission

  • Also it looks like it has been forgotten to create a notification channel

see also Receiving and sending a simple SMS - #26 by Taifun

@ewpatton please put this bug onto the bug list. Thank you.
Taifun

1 Like

SmsBroadcastReceiver.java uses a deprecated Notification Compact constructor:

2 Likes

Have submitted a PR (#3437)

Change log:

  • Build and use a notification channel
  • Ask for POST_NOTIFICATIONS permission if >= Tiramisu
  • Set exported=false for broadcast receiver

Refer for test project file of SteveJG. (Remove MelonNotification extension while testing)

1 Like

Great! Thank you very much!

Does the companion app now also get Post Notification permission in the manifest?

Taifun

1 Like

Yes, here's a build containing that permission:

2 Likes