Skip to content

Instantly share code, notes, and snippets.

@ingyesid
Created May 28, 2013 19:14
Show Gist options
  • Save ingyesid/5665305 to your computer and use it in GitHub Desktop.
Save ingyesid/5665305 to your computer and use it in GitHub Desktop.
ContentValues my_values = new ContentValues();
values.put("address", "+9233397365xx");//sender name
values.put("body", "this is my text");
getContentResolver().insert(Uri.parse("content://sms/inbox"), my_values);
<uses-permission android:name="android.permission.READ_SMS"/>
<uses-permission android:name="android.permission.WRITE_SMS"/>
@OhhhThatVarun
Copy link

Not working.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment