[android-developers] trying to send an MMS causes an ActivityNotFoundException to be thrown...

2010-09-17 Thread sdphil
so i am trying to send an MMS like this: Intent mmsIntent = new Intent(android.intent.action.SEND_MSG); mmsIntent.setComponent(new ComponentName(com.android.mms, .ui.ComposeMessageActivity)); mmsIntent.putExtra(sms_body, body of mms message); mmsIntent.putExtra(Intent.EXTRA_STREAM,

Re: [android-developers] trying to send an MMS causes an ActivityNotFoundException to be thrown...

2010-09-17 Thread Kostya Vasilyev
I'm thinking that the component name here is redundant and in fact harmful. Try taking it out, see if this helps - in case the component name may have changed. An added benefit should be picking up any third-party applications. -- Kostya 17.09.2010 21:27, sdphil пишет: so i am trying to