I want to send an SMS, but not using the SmsManager class. I want to do it with the native SMS app which is there on an Android phone.
And here is the twist : I do
I have done something similar in a project I was working on. You need to use SmsManager
It would be something like this -
SmsManager smsManager = SmsManager.getDefault(); smsManager.sendTextMessage(phoneNumber, null, message, null, null);
You can use this to send an SMS programatically.