WAP push messages in android

Does anyone know what permission is used to receive WAP push messages in android? and please let me know his description.

+3
source share
2 answers

You might want to try:

<intent-filter>
                                <action
android:name="android.provider.Telephony.WAP_PUSH_RECEIVED" />
                        <data android:mimeType="application/vnd.wap.sic" />
                        </intent-filter>

There is various information about specific support in various Android versions for WAP Push, so let me know if this works for you.

+2
source

All Articles