Skip to content Skip to sidebar Skip to footer

Android App Not Responding The Sms Receiver

I have been working on an app to respond to received SMS messages (before you complain, I know this has been asked A LOT, but believe me, I can't get it to work at all, and I've tr

Solution 1:

Are you running this on a phone with a custom SMS app such as GOSMS? I've heard that some of those programs will stop the broadcast so that they can create their own notifications and stop the stock ones.


Solution 2:

Change

<receiver android:name="NotiScreenSmsReceiver" android:process=":remote">

to

<receiver android:name=".NotiScreenSmsReceiver" android:process=":remote">

Post a Comment for "Android App Not Responding The Sms Receiver"