I sending message using SMSManager, I can able to send the message but I want to save it in a message conversation (Default Message Application in Device)?
What i did is
ContentValues values = new ContentValues();
values.put("address", "123456789");
values.put("body", "foo bar");
getContentResolver().insert(Uri.parse("content://sms/sent"), values);
I can able to add it in the inbox but
As CommansWare comment from here,
The SMS content provider is not part of the Android SDK. Your code will break on devices that replace the SMS client with their own. Your code may break in future versions of Android
I dont have device to test in latest version, What will be the solution for all the version of android?