I'm trying to update body of all sms on Android device with
getContentResolver().update(Uri.parse("content://sms"), values.....
query but after request done, also updates message creation/received time.
How i can update message but leave old message date?
I have tried send to update query
ContentValues values = sms values oject;
values.put("body", updatedBody);
values.put("date", oldValues.getAsString("date"));
but it does not help.