Send Audio data with SMS in android -
I am trying to send an audio file converted to a byte array with SMS using SMSManager.sendDataMessage.
But, I'm unable to send it to another phone. Is there any suggestion how can I do this? SMS text based message is for 160 character limit, but you
sender sender = new intent (int. Action_snnd);Try to do something like that. SendIntent.putExtra ("sms_body", "some text"); SendIntent.putExtra (Intent.EXTRA_STREAM, Uri.parse (url)); // url will point to MP3 file sendIntent.setType ("Audio / MP3"); Good references:
Comments
Post a Comment