klinker41 / android-smsmms

Library for easily sending SMS and MMS for Android devices
678 stars 249 forks source link

Save the original sent time for received MMS messages #160

Closed tkm0e closed 5 years ago

tkm0e commented 5 years ago

I would like to obtain the date that received MMS message has sent.

Currently, date of MMS message is not set from PDU but system clock on received device. This is because of causing the problem when timezones weren't set correctly. *ref: aosp-mirror/platform_packages_apps_mms@69481af

However that's not a problem on using on same region, so please store the original PDU time to additional column (Telephony.MMS.DATE_SENT) to obtain from client app easier. As far as I know the column is not used for received messages.

Thanks.