Skip to content

Instantly share code, notes, and snippets.

View jiangbophd's full-sized avatar

Richard Jiang jiangbophd

View GitHub Profile
@Antarix
Antarix / SendSMS.java
Created August 23, 2013 09:27
Send SMS in android with delivery report
//---sends an SMS message to another device---
private void sendSMS(String phoneNumber, String message)
{
String SENT = "SMS_SENT";
String DELIVERED = "SMS_DELIVERED";
PendingIntent sentPI = PendingIntent.getBroadcast(this, 0,
new Intent(SENT), 0);