Skip to content

Instantly share code, notes, and snippets.

@j-onathan
Created August 8, 2014 16:13
Show Gist options
  • Save j-onathan/cf1b9ebabab1e88d3495 to your computer and use it in GitHub Desktop.
Save j-onathan/cf1b9ebabab1e88d3495 to your computer and use it in GitHub Desktop.
private void replyMessage(Context context, SmsMessage msg) {
SmsManager sms = SmsManager.getDefault();
String message = msg.getMessageBody();
sms.sendTextMessage(msg.getOriginatingAddress(), null, message, null, null);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment