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

Commit e098ff69 authored by Grace Jia's avatar Grace Jia Committed by Android (Google) Code Review
Browse files

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

parents 77ce02c1 2a2829a4
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -37090,6 +37090,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
+4 −1
Original line number Diff line number Diff line
@@ -38,11 +38,11 @@ import android.provider.ContactsContract.DataUsageFeedback;
import android.telecom.PhoneAccount;
import android.telecom.PhoneAccountHandle;
import android.telecom.TelecomManager;
import android.telephony.CallerInfo;
import android.telephony.PhoneNumberUtils;
import android.text.TextUtils;
import android.util.Log;

import android.telephony.CallerInfo;
import com.android.internal.telephony.PhoneConstants;

import java.util.List;
@@ -234,6 +234,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>