Loading api/3.xml +71 −11 Original line number Diff line number Diff line Loading @@ -57915,7 +57915,7 @@ type="float" transient="false" volatile="false" value="0.0010f" value="0.001f" static="true" final="true" deprecated="not deprecated" Loading Loading @@ -69483,16 +69483,6 @@ > <implements name="android.os.Parcelable"> </implements> <constructor name="NetworkInfo" type="android.net.NetworkInfo" static="false" final="false" deprecated="not deprecated" visibility="public" > <parameter name="type" type="int"> </parameter> </constructor> <method name="describeContents" return="int" abstract="false" Loading Loading @@ -69548,6 +69538,28 @@ visibility="public" > </method> <method name="getSubtype" return="int" abstract="false" native="false" synchronized="false" static="false" final="false" deprecated="not deprecated" visibility="public" > </method> <method name="getSubtypeName" return="java.lang.String" abstract="false" native="false" synchronized="false" static="false" final="false" deprecated="not deprecated" visibility="public" > </method> <method name="getType" return="int" abstract="false" Loading Loading @@ -69614,6 +69626,17 @@ visibility="public" > </method> <method name="isRoaming" return="boolean" abstract="false" native="false" synchronized="false" static="false" final="false" deprecated="not deprecated" visibility="public" > </method> <method name="writeToParcel" return="void" abstract="false" Loading Loading @@ -72469,6 +72492,21 @@ deprecated="not deprecated" visibility="public" > <parameter name="lockType" type="int"> </parameter> <parameter name="tag" type="java.lang.String"> </parameter> </method> <method name="createWifiLock" return="android.net.wifi.WifiManager.WifiLock" abstract="false" native="false" synchronized="false" static="false" final="false" deprecated="not deprecated" visibility="public" > <parameter name="tag" type="java.lang.String"> </parameter> </method> Loading Loading @@ -72847,6 +72885,28 @@ visibility="public" > </field> <field name="WIFI_MODE_FULL" type="int" transient="false" volatile="false" value="1" static="true" final="true" deprecated="not deprecated" visibility="public" > </field> <field name="WIFI_MODE_SCAN_ONLY" type="int" transient="false" volatile="false" value="2" static="true" final="true" deprecated="not deprecated" visibility="public" > </field> <field name="WIFI_STATE_CHANGED_ACTION" type="java.lang.String" transient="false" api/current.xml +69 −10 Original line number Diff line number Diff line Loading @@ -72743,16 +72743,6 @@ > <implements name="android.os.Parcelable"> </implements> <constructor name="NetworkInfo" type="android.net.NetworkInfo" static="false" final="false" deprecated="not deprecated" visibility="public" > <parameter name="type" type="int"> </parameter> </constructor> <method name="describeContents" return="int" abstract="false" Loading Loading @@ -72808,6 +72798,28 @@ visibility="public" > </method> <method name="getSubtype" return="int" abstract="false" native="false" synchronized="false" static="false" final="false" deprecated="not deprecated" visibility="public" > </method> <method name="getSubtypeName" return="java.lang.String" abstract="false" native="false" synchronized="false" static="false" final="false" deprecated="not deprecated" visibility="public" > </method> <method name="getType" return="int" abstract="false" Loading Loading @@ -72874,6 +72886,17 @@ visibility="public" > </method> <method name="isRoaming" return="boolean" abstract="false" native="false" synchronized="false" static="false" final="false" deprecated="not deprecated" visibility="public" > </method> <method name="writeToParcel" return="void" abstract="false" Loading Loading @@ -75729,6 +75752,21 @@ deprecated="not deprecated" visibility="public" > <parameter name="lockType" type="int"> </parameter> <parameter name="tag" type="java.lang.String"> </parameter> </method> <method name="createWifiLock" return="android.net.wifi.WifiManager.WifiLock" abstract="false" native="false" synchronized="false" static="false" final="false" deprecated="not deprecated" visibility="public" > <parameter name="tag" type="java.lang.String"> </parameter> </method> Loading Loading @@ -76106,6 +76144,27 @@ deprecated="not deprecated" visibility="public" > <field name="WIFI_MODE_FULL" type="int" transient="false" volatile="false" value="1" static="true" final="true" deprecated="not deprecated" visibility="public" > </field> <field name="WIFI_MODE_SCAN_ONLY" type="int" transient="false" volatile="false" value="2" static="true" final="true" deprecated="not deprecated" visibility="public" > </field> <field name="WIFI_STATE_CHANGED_ACTION" type="java.lang.String" core/java/android/net/NetworkInfo.java +3 −7 Original line number Diff line number Diff line Loading @@ -114,8 +114,10 @@ public class NetworkInfo implements Parcelable { private boolean mIsAvailable; /** * TODO This is going away as soon as API council review happens. * @param type network type * @deprecated * @hide because this constructor was only meant for internal use (and * has now been superseded by the package-private constructor below). */ public NetworkInfo(int type) {} Loading Loading @@ -146,8 +148,6 @@ public class NetworkInfo implements Parcelable { * Return a network-type-specific integer describing the subtype * of the network. * @return the network subtype * * @hide pending API council review */ public int getSubtype() { return mSubtype; Loading @@ -170,8 +170,6 @@ public class NetworkInfo implements Parcelable { /** * Return a human-readable name describing the subtype of the network. * @return the name of the network subtype * * @hide pending API council review */ public String getSubtypeName() { return mSubtypeName; Loading Loading @@ -251,8 +249,6 @@ public class NetworkInfo implements Parcelable { * When {@code true}, it suggests that use of data on this network * may incur extra costs. * @return {@code true} if roaming is in effect, {@code false} otherwise. * * @hide pending API council */ public boolean isRoaming() { return mIsRoaming; Loading wifi/java/android/net/wifi/WifiManager.java +2 −6 Original line number Diff line number Diff line Loading @@ -226,23 +226,21 @@ public class WifiManager { public static final String ACTION_PICK_WIFI_NETWORK = "android.net.wifi.PICK_WIFI_NETWORK"; /** * In this mode, Wi-Fi will be kept active, * In this Wi-Fi lock mode, Wi-Fi will be kept active, * and will behave normally, i.e., it will attempt to automatically * establish a connection to a remembered access point that is * within range, and will do periodic scans if there are remembered * access points but none are in range. * @hide pending API council review */ public static final int WIFI_MODE_FULL = 1; /** * In this mode, Wi-Fi will be kept active, * In this Wi-Fi lock mode, Wi-Fi will be kept active, * but the only operation that will be supported is initiation of * scans, and the subsequent reporting of scan results. No attempts * will be made to automatically connect to remembered access points, * nor will periodic scans be automatically performed looking for * remembered access points. Scans must be explicitly requested by * an application in this mode. * @hide pending API council review */ public static final int WIFI_MODE_SCAN_ONLY = 2; Loading Loading @@ -805,8 +803,6 @@ public class WifiManager { * @return a new, unacquired WifiLock with the given tag. * * @see WifiLock * * @hide pending API council review */ public WifiLock createWifiLock(int lockType, String tag) { return new WifiLock(lockType, tag); Loading Loading
api/3.xml +71 −11 Original line number Diff line number Diff line Loading @@ -57915,7 +57915,7 @@ type="float" transient="false" volatile="false" value="0.0010f" value="0.001f" static="true" final="true" deprecated="not deprecated" Loading Loading @@ -69483,16 +69483,6 @@ > <implements name="android.os.Parcelable"> </implements> <constructor name="NetworkInfo" type="android.net.NetworkInfo" static="false" final="false" deprecated="not deprecated" visibility="public" > <parameter name="type" type="int"> </parameter> </constructor> <method name="describeContents" return="int" abstract="false" Loading Loading @@ -69548,6 +69538,28 @@ visibility="public" > </method> <method name="getSubtype" return="int" abstract="false" native="false" synchronized="false" static="false" final="false" deprecated="not deprecated" visibility="public" > </method> <method name="getSubtypeName" return="java.lang.String" abstract="false" native="false" synchronized="false" static="false" final="false" deprecated="not deprecated" visibility="public" > </method> <method name="getType" return="int" abstract="false" Loading Loading @@ -69614,6 +69626,17 @@ visibility="public" > </method> <method name="isRoaming" return="boolean" abstract="false" native="false" synchronized="false" static="false" final="false" deprecated="not deprecated" visibility="public" > </method> <method name="writeToParcel" return="void" abstract="false" Loading Loading @@ -72469,6 +72492,21 @@ deprecated="not deprecated" visibility="public" > <parameter name="lockType" type="int"> </parameter> <parameter name="tag" type="java.lang.String"> </parameter> </method> <method name="createWifiLock" return="android.net.wifi.WifiManager.WifiLock" abstract="false" native="false" synchronized="false" static="false" final="false" deprecated="not deprecated" visibility="public" > <parameter name="tag" type="java.lang.String"> </parameter> </method> Loading Loading @@ -72847,6 +72885,28 @@ visibility="public" > </field> <field name="WIFI_MODE_FULL" type="int" transient="false" volatile="false" value="1" static="true" final="true" deprecated="not deprecated" visibility="public" > </field> <field name="WIFI_MODE_SCAN_ONLY" type="int" transient="false" volatile="false" value="2" static="true" final="true" deprecated="not deprecated" visibility="public" > </field> <field name="WIFI_STATE_CHANGED_ACTION" type="java.lang.String" transient="false"
api/current.xml +69 −10 Original line number Diff line number Diff line Loading @@ -72743,16 +72743,6 @@ > <implements name="android.os.Parcelable"> </implements> <constructor name="NetworkInfo" type="android.net.NetworkInfo" static="false" final="false" deprecated="not deprecated" visibility="public" > <parameter name="type" type="int"> </parameter> </constructor> <method name="describeContents" return="int" abstract="false" Loading Loading @@ -72808,6 +72798,28 @@ visibility="public" > </method> <method name="getSubtype" return="int" abstract="false" native="false" synchronized="false" static="false" final="false" deprecated="not deprecated" visibility="public" > </method> <method name="getSubtypeName" return="java.lang.String" abstract="false" native="false" synchronized="false" static="false" final="false" deprecated="not deprecated" visibility="public" > </method> <method name="getType" return="int" abstract="false" Loading Loading @@ -72874,6 +72886,17 @@ visibility="public" > </method> <method name="isRoaming" return="boolean" abstract="false" native="false" synchronized="false" static="false" final="false" deprecated="not deprecated" visibility="public" > </method> <method name="writeToParcel" return="void" abstract="false" Loading Loading @@ -75729,6 +75752,21 @@ deprecated="not deprecated" visibility="public" > <parameter name="lockType" type="int"> </parameter> <parameter name="tag" type="java.lang.String"> </parameter> </method> <method name="createWifiLock" return="android.net.wifi.WifiManager.WifiLock" abstract="false" native="false" synchronized="false" static="false" final="false" deprecated="not deprecated" visibility="public" > <parameter name="tag" type="java.lang.String"> </parameter> </method> Loading Loading @@ -76106,6 +76144,27 @@ deprecated="not deprecated" visibility="public" > <field name="WIFI_MODE_FULL" type="int" transient="false" volatile="false" value="1" static="true" final="true" deprecated="not deprecated" visibility="public" > </field> <field name="WIFI_MODE_SCAN_ONLY" type="int" transient="false" volatile="false" value="2" static="true" final="true" deprecated="not deprecated" visibility="public" > </field> <field name="WIFI_STATE_CHANGED_ACTION" type="java.lang.String"
core/java/android/net/NetworkInfo.java +3 −7 Original line number Diff line number Diff line Loading @@ -114,8 +114,10 @@ public class NetworkInfo implements Parcelable { private boolean mIsAvailable; /** * TODO This is going away as soon as API council review happens. * @param type network type * @deprecated * @hide because this constructor was only meant for internal use (and * has now been superseded by the package-private constructor below). */ public NetworkInfo(int type) {} Loading Loading @@ -146,8 +148,6 @@ public class NetworkInfo implements Parcelable { * Return a network-type-specific integer describing the subtype * of the network. * @return the network subtype * * @hide pending API council review */ public int getSubtype() { return mSubtype; Loading @@ -170,8 +170,6 @@ public class NetworkInfo implements Parcelable { /** * Return a human-readable name describing the subtype of the network. * @return the name of the network subtype * * @hide pending API council review */ public String getSubtypeName() { return mSubtypeName; Loading Loading @@ -251,8 +249,6 @@ public class NetworkInfo implements Parcelable { * When {@code true}, it suggests that use of data on this network * may incur extra costs. * @return {@code true} if roaming is in effect, {@code false} otherwise. * * @hide pending API council */ public boolean isRoaming() { return mIsRoaming; Loading
wifi/java/android/net/wifi/WifiManager.java +2 −6 Original line number Diff line number Diff line Loading @@ -226,23 +226,21 @@ public class WifiManager { public static final String ACTION_PICK_WIFI_NETWORK = "android.net.wifi.PICK_WIFI_NETWORK"; /** * In this mode, Wi-Fi will be kept active, * In this Wi-Fi lock mode, Wi-Fi will be kept active, * and will behave normally, i.e., it will attempt to automatically * establish a connection to a remembered access point that is * within range, and will do periodic scans if there are remembered * access points but none are in range. * @hide pending API council review */ public static final int WIFI_MODE_FULL = 1; /** * In this mode, Wi-Fi will be kept active, * In this Wi-Fi lock mode, Wi-Fi will be kept active, * but the only operation that will be supported is initiation of * scans, and the subsequent reporting of scan results. No attempts * will be made to automatically connect to remembered access points, * nor will periodic scans be automatically performed looking for * remembered access points. Scans must be explicitly requested by * an application in this mode. * @hide pending API council review */ public static final int WIFI_MODE_SCAN_ONLY = 2; Loading Loading @@ -805,8 +803,6 @@ public class WifiManager { * @return a new, unacquired WifiLock with the given tag. * * @see WifiLock * * @hide pending API council review */ public WifiLock createWifiLock(int lockType, String tag) { return new WifiLock(lockType, tag); Loading