Is it possible to intercept an SMS coming from a certain number and direct it to a certain application on the iPhone/Android where it will be processed? Thanks.
|
In Android, what you can do is register a |
|||
|
|
|
For Android the answer is no. You can implement a |
|||
|
|
|
For Android the answer is Yes.
You can find more information here: stackoverflow.com/can-we-delete-an-sms-in-android-before-it-reaches-the-inbox/ |
|||
|
|
|
In Android, once you received an SMS message in your application, you can use an Intent object to pass the details of the message to another activity/application for further processing. If you need to pass the message to your own application, use the sendBroadcast() method to broadcast the Intent object. In your activity, you would just need to use the registerReceiver() method to listen for the broadcast. Hope it helps! Wei-Meng Lee |
|||
|
|
|
Yes. It is possible in Android. I'm doing it in an app I'm developing. What you need to do is:
IMPORTANT: In manifest file you have to define SMS priority with an high number. I believe the max is 100.
|
||||
|
|