diff options
| -rw-r--r-- | api/current.txt | 1 | ||||
| -rw-r--r-- | core/java/android/provider/VoicemailContract.java | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/api/current.txt b/api/current.txt index eed7986397d0..be52a83fb8f8 100644 --- a/api/current.txt +++ b/api/current.txt @@ -36380,6 +36380,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"; diff --git a/core/java/android/provider/VoicemailContract.java b/core/java/android/provider/VoicemailContract.java index 6a3c55efda8a..70de9ee49d94 100644 --- a/core/java/android/provider/VoicemailContract.java +++ b/core/java/android/provider/VoicemailContract.java @@ -172,6 +172,11 @@ public class VoicemailContract { */ 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> */ |