I\'ve seen on SO that @Commonsware states that all that is needed to receive SMS\'s is a Broadcast Receiver (i.e., without the use of a service). I\'d like to empl
Your priority might not be good enough, try setting it to 2147483647.
After doing that, try start it in debug mode, and breakpoint in your onReceive method, or make a Log.i("BroadcastSMSReceiver", "Received something in SMSRECEIVERTEST")
:)
Edit, set priority to a high number instead of 1, just read that high number equals higher priority.