My problem is that I'm using a code like this to import SMS in content://sms/inbox
but it isn't working:
ContentValues my_values = new ContentValues();
my_values.put("address", "333333333333");
my_values.put("body", "this is my text");
getContentResolver().insert(Uri.parse("content://sms/inbox"), my_values);
Also I tried other solutions found in this site but nothing of them helped me.
Thanks to who will resolve this problem.