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

Commit 5a01b5a7 authored by Ecco Park's avatar Ecco Park Committed by Android (Google) Code Review
Browse files

Merge "WifiConfiguration: New disable network status for no subscription"

parents c5f8397f ff3fbdea
Loading
Loading
Loading
Loading
+7 −2
Original line number Diff line number Diff line
@@ -1098,10 +1098,14 @@ public class WifiConfiguration implements Parcelable {
         * This network is disabled due to wrong password
         */
        public static final int DISABLED_BY_WRONG_PASSWORD = 13;
        /**
         * This network is disabled because service is not subscribed
         */
        public static final int DISABLED_AUTHENTICATION_NO_SUBSCRIPTION = 14;
        /**
         * This Maximum disable reason value
         */
        public static final int NETWORK_SELECTION_DISABLED_MAX = 14;
        public static final int NETWORK_SELECTION_DISABLED_MAX = 15;

        /**
         * Quality network selection disable reason String (for debug purpose)
@@ -1120,7 +1124,8 @@ public class WifiConfiguration implements Parcelable {
                "NETWORK_SELECTION_DISABLED_NO_INTERNET_PERMANENT",
                "NETWORK_SELECTION_DISABLED_BY_WIFI_MANAGER",
                "NETWORK_SELECTION_DISABLED_BY_USER_SWITCH",
                "NETWORK_SELECTION_DISABLED_BY_WRONG_PASSWORD"
                "NETWORK_SELECTION_DISABLED_BY_WRONG_PASSWORD",
                "NETWORK_SELECTION_DISABLED_AUTHENTICATION_NO_SUBSCRIPTION"
        };

        /**