Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion src/android/src/com/pylonproducts/wifiwizard/WifiWizard.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
import android.net.wifi.SupplicantState;
import android.content.Context;
import android.util.Log;
import android.os.Build.VERSION;


public class WifiWizard extends CordovaPlugin {
Expand All @@ -46,6 +47,7 @@ public class WifiWizard extends CordovaPlugin {
private static final String IS_WIFI_ENABLED = "isWifiEnabled";
private static final String SET_WIFI_ENABLED = "setWifiEnabled";
private static final String TAG = "WifiWizard";
private static final int API_VERSION = VERSION.SDK_INT;

private WifiManager wifiManager;
private CallbackContext callbackContext;
Expand Down Expand Up @@ -429,7 +431,17 @@ private boolean getScanResults(CallbackContext callbackContext, JSONArray data)
lvl.put("BSSID", scan.BSSID);
lvl.put("frequency", scan.frequency);
lvl.put("capabilities", scan.capabilities);
// lvl.put("timestamp", scan.timestamp);
lvl.put("timestamp", scan.timestamp);

if (API_VERSION >= 23) { // Marshmallow
lvl.put("channelWidth", scan.channelWidth);
lvl.put("centerFreq0", scan.centerFreq0);
lvl.put("centerFreq1", scan.centerFreq1);
} else {
lvl.put("channelWidth", null);
lvl.put("centerFreq0", null);
lvl.put("centerFreq1", null);
}
returnList.put(lvl);
} catch (JSONException e) {
e.printStackTrace();
Expand Down