broadcastreceiver - Android receive Data_Sms -
my android app sends data sms. phones able receive message except android. have added broadcast receiver in manifest:
<receiver android:name=".smsreceiver"> <intent-filter android:priority="10"> <action android:name="android.intent.action.data_sms_received" /> <data android:scheme="sms" /> <data android:port="5009" /> </intent-filter> </receiver>
the application not give response when data sms received, although msg reaches inbox. help.
it looks might known issue, see stackoverflow question:
how send , receive data sms messages
this blog seemed suggest possible, comments underneath indicate never got work.
Comments
Post a Comment