Fix build error on API

Change-Id: Id7024feb6baf8c6cc607702b3ac90dfbd3d483ba
This commit is contained in:
xinhe
2015-04-21 15:42:03 -07:00
parent 170102d631
commit 7e5e791d22
3 changed files with 2 additions and 6 deletions

View File

@@ -18003,8 +18003,6 @@ package android.net.wifi {
field public java.util.BitSet allowedKeyManagement;
field public java.util.BitSet allowedPairwiseCiphers;
field public java.util.BitSet allowedProtocols;
field public int apBand;
field public int apChannel;
field public android.net.wifi.WifiEnterpriseConfig enterpriseConfig;
field public boolean hiddenSSID;
field public int networkId;

View File

@@ -19504,8 +19504,6 @@ package android.net.wifi {
field public java.util.BitSet allowedKeyManagement;
field public java.util.BitSet allowedPairwiseCiphers;
field public java.util.BitSet allowedProtocols;
field public int apBand;
field public int apChannel;
field public int creatorUid;
field public android.net.wifi.WifiEnterpriseConfig enterpriseConfig;
field public boolean hiddenSSID;

View File

@@ -239,7 +239,7 @@ public class WifiConfiguration implements Parcelable {
* The band which AP resides on
* 0-2G 1-5G
* By default, 2G is chosen
* @hidden
* @hide
*/
public int apBand = 0;
@@ -248,7 +248,7 @@ public class WifiConfiguration implements Parcelable {
* 2G 1-11
* 5G 36,40,44,48,149,153,157,161,165
* 0 - find a random available channel according to the apBand
* @hidden
* @hide
*/
public int apChannel = 0;