Android add MMS to database
I want to add some MMS messages into my device database. I've the following code but it doesn't work at all. No entry are added into the native app... public static Uri insert(Context context, String[] to, String subject, Uri messageUri) { try { Uri destUri = Uri.parse("content://mms/sent"); // Get thread id Set<String> recipients = new HashSet<String>(); recipients.addAll(Arrays.asList(to)); long thread_id = getOrCreateThreadId(context, recipients); Log.e(">>>>>>>", "Thread ID is " + thread_id); // Create a dummy sms ContentValues dummyValues = new ContentValues(); dummyValues.put("thread_id"