Skip to content Skip to sidebar Skip to footer

Dynamic Broadcast Registration For Sms_received Is Not Working

Registering broadcast receiver for SMS_RECEIVED action in AndroidManifest.xml file

Solution 1:

How can i fix that ?

Start by using the correct Intent action.

There are two action strings related to SMS delivery. What works for any app — and what you are using in the <intent-filter>is SMS_RECEIVED_ACTION. What only works for the user's chosen SMS client — and what you are trying to use with the IntentFilteris SMS_DELIVER_ACTION. These are not the same.

Post a Comment for "Dynamic Broadcast Registration For Sms_received Is Not Working"