Go SMS recently updated with a new feature “Disable other message notification”. The feature causes other applications listening to the incoming SMS broadcast to not fire. For example my application, Shady SMS, listens to the incoming SMS broadcast to send notifications and to actually extract and save the SMS message.
When this new feature in Go SMS is enabled, Shady does not send a notification or save the message ultimately not responding at all to the incoming SMS broadcast.
Go SMS must somehow be unregistering my application’s broadcast receiver because the incoming SMS broadcast cannot be aborted. My intent filter is set to android:priority=”0″.
Any thoughts?
This is the lowest possible priority. All other applications will get their chance first before it comes to you. Quoting the documentation:
So, they are simply calling
abortBroadcast(). They probably have their priority jacked to the roof.