i want create a sms dialog and attach a file
Uri u = Uri.parse("/sdcard/image/123.jpeg");
if (u == null)
return true;
Intent intent = new Intent();
intent.setAction(Intent.ACTION_SEND);
//intent.setType(image.getMimeType());
intent.putExtra(Intent.EXTRA_STREAM, u);
startActivity(Intent.createChooser(intent,getText(R.string.image)));
AndroidMainfest.xml
<uses-permission android:name="android.permission.READ_SMS" />
<uses-permission android:name="android.permission.WRITE_SMS" />
but i can't create the sms dialog, warnning is "no applications can perform this action"
where is problem?




