summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Tyler Gunn <tgunn@google.com> 2020-01-29 20:24:09 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2020-01-29 20:24:09 +0000
commit966020f8dd5162f1da25f28ae146aa1f53e49771 (patch)
treee0e0e2a4019b0699276056167283fdd523c05f9a
parentcd70c935b3df02709e1fdae7b4716057ba65131d (diff)
parent9af1c6297fb0b3c311ab671a5d0bfbc48b1148f4 (diff)
Merge "Added support for Calls.FEATURES_VOLTE in call log."
-rw-r--r--api/current.txt1
-rw-r--r--core/java/android/provider/CallLog.java3
2 files changed, 4 insertions, 0 deletions
diff --git a/api/current.txt b/api/current.txt
index 726b0659faf6..ce28b957aaae 100644
--- a/api/current.txt
+++ b/api/current.txt
@@ -37319,6 +37319,7 @@ package android.provider {
field public static final int FEATURES_PULLED_EXTERNALLY = 2; // 0x2
field public static final int FEATURES_RTT = 32; // 0x20
field public static final int FEATURES_VIDEO = 1; // 0x1
+ field public static final int FEATURES_VOLTE = 64; // 0x40
field public static final int FEATURES_WIFI = 8; // 0x8
field public static final String GEOCODED_LOCATION = "geocoded_location";
field public static final int INCOMING_TYPE = 1; // 0x1
diff --git a/core/java/android/provider/CallLog.java b/core/java/android/provider/CallLog.java
index 9ffeff99e153..a0e92b398c4e 100644
--- a/core/java/android/provider/CallLog.java
+++ b/core/java/android/provider/CallLog.java
@@ -232,6 +232,9 @@ public class CallLog {
/** Call was on RTT at some point */
public static final int FEATURES_RTT = 1 << 5;
+ /** Call was VoLTE */
+ public static final int FEATURES_VOLTE = 1 << 6;
+
/**
* The phone number as the user entered it.
* <P>Type: TEXT</P>