> from which intent or notification,
> we can block outgoing SMS in android.
> --
> You received this message because you are subscribed to the Google
> Groups "Android Developers" group.
> To post to this group, send email to android-developers@googlegroups.com
> To unsubscribe from this group, send email to
> android-developers+unsubscribe@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en
I don't know how you can block an sms message before it is received.
However, reading a SMS via Android can be done after it is received can be
done using a query on the SMS inbox. The SMSPopUp application for Android
does this and more. The sourcecode of this application can be found here
http://code.google.com/p/android-smspopup/source/browse/tags/SMSPopup...
For example, look at the getSmsDetails method in the SMSPopUp application.
We are asking for blocking the outgoing sms not reading the sms details. We
can read the details. Anyways you can block incoming sms not outgoing sms .
I thought you knew to block outgoing sms when you said yes when i mailed.
Anyways Thanks
Regards,
Uttam Agarwal
On Wed, May 2, 2012 at 11:51 AM, asheesh arya <asheesharya...@gmail.com>wrote:
> I don't know how you can block an sms message before it is received.
> However, reading a SMS via Android can be done after it is received can be
> done using a query on the SMS inbox. The SMSPopUp application for Android
> does this and more. The sourcecode of this application can be found here
> http://code.google.com/p/android-smspopup/source/browse/tags/SMSPopup...
> For example, look at the getSmsDetails method in the SMSPopUp application.
> --
> You received this message because you are subscribed to the Google
> Groups "Android Developers" group.
> To post to this group, send email to android-developers@googlegroups.com
> To unsubscribe from this group, send email to
> android-developers+unsubscribe@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en
I don't think you can block outgoing SMS, unless you change Android
itself. And honestly, I would be very surprised if Android supports
such functionality by default.
On Wed, May 2, 2012 at 3:06 AM, Ali Chousein <ali.chous...@gmail.com> wrote:
> I don't think you can block outgoing SMS, unless you change Android
> itself. And honestly, I would be very surprised if Android supports
> such functionality by default.
Agreed. Any app can call SmsManager and send an SMS, and that cannot
be blocked without firmware modifications.