How to save SMS to inbox in android programmatically?
- by Senthil
I have written the below code , for sending SMS .
SmsManager smsManager = SmsManager.getDefault();
smsManager.sendTextMessage(destAddr, null, mMessageText, il, null);
But this is not updating in my Inbox ,I need to save the same message in Inbox,
Or is there any way to invoke a native SMS application to send SMS ?