Merge "Added support for Calls.FEATURES_VOLTE in call log."

This commit is contained in:
Tyler Gunn
2020-01-29 20:24:09 +00:00
committed by Gerrit Code Review
2 changed files with 4 additions and 0 deletions

View File

@@ -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

View File

@@ -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>