Skip to content

Instantly share code, notes, and snippets.

@yassersouri
Created January 24, 2012 07:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yassersouri/1668700 to your computer and use it in GitHub Desktop.
Save yassersouri/1668700 to your computer and use it in GitHub Desktop.
Sending SMS with andoroid
private void sendSMS(String to, String text) {
SmsManager sms = SmsManager.getDefault();
sms.sendTextMessage(to, null, text, null, null);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment