Android Question Static SMS intent filter

b4auser1

Well-Known Member
Licensed User
Longtime User
AddReceiverText(svcSMSReceiver,
<intent-filter android:priority="-1000">
<action android:name="android.provider.Telephony.SMS_RECEIVED" />
</intent-filter>)

I have used Static SMS intent filter as it described in Tutorial,
because: Static receivers always work. If the process is not running then it will be created.
but if I kill my application thru applications in Android settings, then my service is not started automtically after SMS received. What is wrong ?

P.S. Except the case with killing, service in my application receives and processes all the incoming SMS correctly.
 
Top