Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 55685a69 authored by Wei Huang's avatar Wei Huang Committed by Android (Google) Code Review
Browse files

Merge "Add the field date_sent to keep track of the date a message was sent."

parents 92f87fb9 65eda063
Loading
Loading
Loading
Loading
+14 −2
Original line number Diff line number Diff line
@@ -90,11 +90,17 @@ public final class Telephony {
        public static final String PERSON_ID = "person";

        /**
         * The date the message was sent
         * The date the message was received
         * <P>Type: INTEGER (long)</P>
         */
        public static final String DATE = "date";

        /**
         * The date the message was sent
         * <P>Type: INTEGER (long)</P>
         */
        public static final String DATE_SENT = "date_sent";

        /**
         * Has the message been read
         * <P>Type: INTEGER (boolean)</P>
@@ -650,11 +656,17 @@ public final class Telephony {
        public static final int MESSAGE_BOX_OUTBOX = 4;

        /**
         * The date the message was sent.
         * The date the message was received.
         * <P>Type: INTEGER (long)</P>
         */
        public static final String DATE = "date";

        /**
         * The date the message was sent.
         * <P>Type: INTEGER (long)</P>
         */
        public static final String DATE_SENT = "date_sent";

        /**
         * The box which the message belong to, for example, MESSAGE_BOX_INBOX.
         * <P>Type: INTEGER</P>