I am sending SMS by using Code:
SmsManager sms = SmsManager.getDefault();
sms.sendTextMessage(phoneNumber, null, message, sentPI, deliveredPI);
It's working fine and successfully sends a standard SMS that is automatically saved in recipient mobile inbox.
I want send the SMS as flash(notification) SMS. By this I mean that the message should be displayed immediately on recipient mobile screen but not stored.
Please tell me how can I do this.