diff --git a/core/res/res/values/config.xml b/core/res/res/values/config.xml index f1da2f9623697..4b28aab86105c 100755 --- a/core/res/res/values/config.xml +++ b/core/res/res/values/config.xml @@ -437,6 +437,9 @@ point on the move. A value of 0 means no periodic scans will be used in the framework. --> 300000 + + 15000 + 20000 diff --git a/core/res/res/values/symbols.xml b/core/res/res/values/symbols.xml index b274c15cba270..76556ad645269 100755 --- a/core/res/res/values/symbols.xml +++ b/core/res/res/values/symbols.xml @@ -371,6 +371,7 @@ + diff --git a/wifi/java/android/net/wifi/ScanResult.java b/wifi/java/android/net/wifi/ScanResult.java index e8a51e336f7d8..5dc70bd49baf0 100644 --- a/wifi/java/android/net/wifi/ScanResult.java +++ b/wifi/java/android/net/wifi/ScanResult.java @@ -261,6 +261,12 @@ public class ScanResult implements Parcelable { return freq > 4900 && freq < 5900; } + /** + * @hide + * storing the raw bytes of full result IEs + **/ + public byte[] bytes; + /** information element from beacon * @hide */