Wi-Fi Manager Plugin for Apache Cordova
- Android: 5.0 or later
- iOS: 11.0 or later
cordova plugin add cordova-plugin-wifi-manager
Notice
When you use this plugin for Android 10 (API level 29) or later, you can connect to the Internet only through your own (cordova) app. This is due to the specification of new Android API, WifiNetworkSpecifier.
If you want to purposely use the deprecated Android API, run the following.
cordova run android --device -- --gradleArg=-PcdvTargetSdkVersion=28
const onDeviceReady = () => {
window.wifiManager.connect(
'SAMPLE_SSID',
'SAMPLE_PASSPHRASE',
() => {
console.log('connect method was successfully called.');
},
(result) => {
console.log('connect method failed to be called.');
console.log(`code: ${result.code}, message: ${result.message}`);
}
);
};
document.addEventListener('deviceready', onDeviceReady, false);
const onDeviceReady = () => {
window.wifiManager.disconnect(
'SAMPLE_SSID',
() => {
console.log('disconnect method was successfully called.');
},
(result) => {
console.log('disconnect method failed to be called.');
consoe.log(`code: ${result.code}, message: ${result.message}`);
}
);
};
document.addEventListener('deviceready', onDeviceReady, false);
cordova-plugin-wifi-manager
is available under the MIT license. See the LICENSE file for details.