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

Commit 5f1186ec authored by Jack Yu's avatar Jack Yu
Browse files

Added handover support in the factory

Test: Manual
Bug: 73659459
Change-Id: I10cf40bf32dc30393dd538477aaa411a48b4ccf2
parent 3e555b6f
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -54,8 +54,15 @@ public final class AccessNetworkConstants {
     */
    @SystemApi
    public static final class TransportType {
        /**
         * Invalid transport type.
         * @hide
         */
        public static final int INVALID = -1;

        /** Wireless Wide Area Networks (i.e. Cellular) */
        public static final int WWAN = 1;

        /** Wireless Local Area Networks (i.e. Wifi) */
        public static final int WLAN = 2;

@@ -65,6 +72,7 @@ public final class AccessNetworkConstants {
        /** @hide */
        public static String toString(int type) {
            switch (type) {
                case INVALID: return "INVALID";
                case WWAN: return "WWAN";
                case WLAN: return "WLAN";
                default: return Integer.toString(type);