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

Commit 31612fde authored by Eric Erfanian's avatar Eric Erfanian
Browse files

Update the RTT features constant.

The effect of this change is to properly set
the RTT constant to 32.

The constant was introduced in I3ed8ac5ad7300c44f87e2573d9409b3a92b98ab6
but accidentally overriden in Ib8d6ea48379a44951a4c2e46ee79b9d4c0bf30e7
fixed again in I09ea52720bf2439537e2f4ad32afb14f5df25f71 but
reverted again in I1ccc2c36b480f64c3a8b3df7eee73f80b7863722.

In a subsequent change, I will merge this change into public master.

Bug: 63934304
Test: TreeHugger
Change-Id: I828788e8d950687149d9094d0631171e2fd7212f
parent 4993e552
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -34639,7 +34639,7 @@ package android.provider {
    field public static final java.lang.String FEATURES = "features";
    field public static final int FEATURES_HD_CALL = 4; // 0x4
    field public static final int FEATURES_PULLED_EXTERNALLY = 2; // 0x2
    field public static final int FEATURES_RTT = 16; // 0x10
    field public static final int FEATURES_RTT = 32; // 0x20
    field public static final int FEATURES_VIDEO = 1; // 0x1
    field public static final int FEATURES_WIFI = 8; // 0x8
    field public static final java.lang.String GEOCODED_LOCATION = "geocoded_location";
+4 −4
Original line number Diff line number Diff line
@@ -223,14 +223,14 @@ public class CallLog {
        /** Call was WIFI call. */
        public static final int FEATURES_WIFI = 1 << 3;

        /** Call was on RTT at some point */
        public static final int FEATURES_RTT = 1 << 4;

        /**
         * Indicates the call underwent Assisted Dialing.
         * @hide
         */
        public static final Integer FEATURES_ASSISTED_DIALING_USED = 0x10;
        public static final int FEATURES_ASSISTED_DIALING_USED = 1 << 4;

        /** Call was on RTT at some point */
        public static final int FEATURES_RTT = 1 << 5;

        /**
         * The phone number as the user entered it.