views:

139

answers:

1

I've found a few tutorials on how to send/receive text SMS messages, but none on how to send/receive data SMS messages. I have a very small amount of data I would like the users of my app to be able to share.

I am able to send, but my BroadcastReceiver doesn't ever get called. It seems this is a known issue (http://code.google.com/p/android/issues/detail?id=1576) but has anyone figured out how to do this yet?

I tried sending/receiving a text SMS and that works fine, the thing is, I need to specify a port so only my app can listen for the SMS.

It seems this question has been asked here before and was never answered: http://stackoverflow.com/questions/2726976/how-to-recieve-text-sms-to-specific-port

A: 

You mean MMS ? (Multimedia message system).

Try something like mms:// and as params of the intents the data.

ykatchou
No, I'm trying to send to a specific port using the SmsManager.sendDataMessage like this: http://stackoverflow.com/questions/2726976/how-to-recieve-text-sms-to-specific-port
Scienceprodigy
Nobody has an answer to this?
Scienceprodigy
I'm not trying to send multimedia, I'm trying to send some data... like XML or something.
Scienceprodigy