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

Commit 1ba33dfd authored by Ta-wei Yen's avatar Ta-wei Yen
Browse files

Allow Voicemails to be inserted as not new.

Inserting voicemails as new will cause dialer to send notifications to
the user. For initial syncs this is undesirable. Previously the NEW
colunm is only available to call log.

Change-Id: Ie9091d23082a333753760b194475b3d1b8b11917
Fixes: 69482089
Test: CTS
parent cc1b3e0e
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -36170,6 +36170,7 @@ package android.provider {
    field public static final java.lang.String ITEM_TYPE = "vnd.android.cursor.item/voicemail";
    field public static final java.lang.String LAST_MODIFIED = "last_modified";
    field public static final java.lang.String MIME_TYPE = "mime_type";
    field public static final java.lang.String NEW = "new";
    field public static final java.lang.String NUMBER = "number";
    field public static final java.lang.String PHONE_ACCOUNT_COMPONENT_NAME = "subscription_component_name";
    field public static final java.lang.String PHONE_ACCOUNT_ID = "subscription_id";
+5 −0
Original line number Diff line number Diff line
@@ -171,6 +171,11 @@ public class VoicemailContract {
         * <P>Type: INTEGER (long)</P>
         */
        public static final String DURATION = Calls.DURATION;
        /**
         * Whether or not the voicemail has been acknowledged (notification sent to the user).
         * <P>Type: INTEGER (boolean)</P>
         */
        public static final String NEW = Calls.NEW;
        /**
         * Whether this item has been read or otherwise consumed by the user.
         * <P>Type: INTEGER (boolean)</P>