java - Handle network configuration sms -


i want handle received sms contains network configurations(oma ota). have developed android application catches typical sms inbox. network configuration not typical sms. how can it? broadcast action that? trying this:

<receiver android:name="ru.tenet.pdureceiver.smsreceiver" >            <intent-filter android:priority="1" >                 <action android:name="android.provider.telephony.sms_received" />            </intent-filter>         </receiver>   

as understood, android.provider.telephony.sms_received not enough.

well, i've found solution. action is:

android.provider.telephony.wap_push_received 

and there must mimetype defined wap message. example:

 <intent-filter android:priority="1" >                 <action android:name="android.provider.telephony.wap_push_received" />                 <data android:mimetype="application/vnd.wap.connectivity-wbxml" /> </intent-filter> 

Comments