Hi,

I am trying to write an application which gets invoked when SMS or MMS
is received. SMS part works fine but hard luck on MMS.

I have written a Receiver class which should be invoked upon the
receipt of an MMS message. However that class is not invoked.

In the Manifest File I have set the following permissions:

 <uses-permission android:name= "android.permission.RECEIVE_MMS" ></
uses-permission>

in addition

the receiver tag in Manifest file is:
<intent-filter>
              <action android:name=
                    "android.provider.Telephony.WAP_PUSH_RECEIVED" />
                    <action android:name=
                    "android.provider.Telephony.SMS_RECEIVED" />
              </intent-filter>
        </receiver>

However yet my Receiver class is not invoked on receipt of an MMS. I
do get 1 dump crash in the logs upon the receipt of MMS.
Please lettme know some clue on this. This is very important for my
application.

Thanks,


--~--~---------~--~----~------------~-------~--~----~
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-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to