Problem With SMS Broadcast Receiver
Hey guys I could really use some insight into this one. Ok, I'm new to eclipse and android first of all. Here is what I've got. Ok, I've got a BroadcastReceiver that I'm using to m
Solution 1:
You need to use a capital T in your intent filter in the manifest:
<action android:name="android.provider.Telephony.SMS_RECEIVED">
^
Solution 2:
Do not forget to use
<receiver android:exported="true" >
Post a Comment for "Problem With SMS Broadcast Receiver"