We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3d45f98 + 165ad99 commit 11b213bCopy full SHA for 11b213b
1 file changed
README.md
@@ -122,4 +122,19 @@ Get current IP
122
wifi.getIP((ip)=>{
123
console.log(ip);
124
});
125
-```
+```
126
+
127
+Remove/Forget the Wifi network from mobile by SSID, returns boolean
128
+``` javascript
129
+wifi.isRemoveWifiNetwork(ssid, (isRemoved) => {
130
+ console.log("Forgetting the wifi device - " + ssid);
131
+});
132
133
134
+Starts native Android wifi network scanning and returns list
135
136
+wifi.reScanAndLoadWifiList((wifiStringList) => {
137
+ var wifiArray = JSON.parse(wifiStringList);
138
+ console.log('Detected wifi networks - ',wifiArray);
139
140
0 commit comments