Before Android KitKat, it was possible to send SMS messages without them being stored in the sent folder of the installed messaging apps on the device, using this method:
SmsManager sms = SmsManager.getDefault();
sms.sendTextMessage(phonenumber, null, message, null, null);
But how is it done post-KitKat? Do you have to delete the messages that are sent out by your app? And if so, how is it done correctly?