Skip to content

Instantly share code, notes, and snippets.

View mcobunga's full-sized avatar
🎯
Focusing

MćObunga mcobunga

🎯
Focusing
  • Nairobi, Kenya
View GitHub Profile
@mcobunga
mcobunga / Android Read SMS
Created October 16, 2017 05:45 — forked from wangerekaharun/Android Read SMS
Code for reading SMS in android
//add permission Read SMS in android manifest to enable this code to work
StringBuilder smsBuilder = new StringBuilder();
final String SMS_URI_INBOX = "content://sms/inbox";
final String SMS_URI_ALL = "content://sms/";
try {
Uri uri = Uri.parse(SMS_URI_ALL);
String[] projection = new String[] { "_id", "address", "person", "body", "date", "type" };
//retrieving sms for a particular number,you can set to null so as to read all sms in inbox folder