How To Register Broadcastreceiver For Sms Catcher?
I have been developing the application which must catch all input sms. For it I use SmsReceiver class which extends BroadcastReceiver class and it works, but I need that the applic
Solution 1:
add this in your manifest file
<receiver android:name=".RebootingReceiver">
<intent-filter >
<action android:name="android.provider.Telephony.SMS_RECEIVED" />
</intent-filter>
</receiver>
Post a Comment for "How To Register Broadcastreceiver For Sms Catcher?"