Hello, we found the workaround. Starting from Android 1.6, the received sms intent is ordered. This means you can prioritize your filter.
Summarizing: - create your own application that is able to handle incoming messages. At some point you have to stop the broadcast of the message, I don't exactly remember the method, it's something like "stopBroadcast()". - set the priority of your filter to 100, it should work. On 29 Lug, 20:12, Talha Shabib Ahmed <[email protected]> wrote: > Hi there Andrea. I am working on a very similar project where i > interceptSMS, process it and either delete it or just pass it normaly > toSMSapp. I am also stuck at how to disable the notifications for > thesmsthat i want to delete....... > > I would really appreciate if you can help.......... > > On Jul 26, 12:00 pm, Andrea Rota <[email protected]> wrote: > > > > > Hello all, > > > I am working on a research project and I need to write an Android > > application that is able to interceptSMS'sand, according to their > > content, route them to a web services without showing any alert. > > > I tried to register a broadcast receiver on the intent SMS_RECEIVED, > > but the defaultSMSapplication is still notifying theSMSin the > > notification bar. The only way to achieve what is manually disabling > > the message notification from the defaultSMSapplication's menu. > > > I found that the "SMSGuard" application, available on the market, is > > able to filter messages out without any notification, without touching > > any default configuration (I wrote to the developer, no answer yet). > > > Any idea? -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

