I've been trying hard to figure out how to check for network connectivity while the splashscreen is being displayed.I've searched for the code in many places but most of those articles are outdated. I followed the tutorial that's mentioned here:https://www.thepolyglotdeveloper.com/2016/01/determine-network-availability-in-an-ionic-2-mobile-app/
But then I found out that Network.connection is deprecated and has been replaced by Network.type on the ionic2 website. So I've replaced the word connection with Network.type everywhere. So I checked out the ionic2 website and found this code which I included in the home.ts file.
import {Network} from 'ionic-native';
checkConnection() {
//console.log("entrou");
//console.log(Network);
let disconnectSubscription = Network.onDisconnect().subscribe(() => {
console.log('network was disconnected :-( ')
});
disconnectSubscription.unsubscribe();
console.log("watch network");
console.log("Conexao" + Network.type);
let connectSubscription = Network.onConnect().subscribe(() => {
console.log('network connected!');
setTimeout(() => {
console.log('network status');
console.log(Network.type);
if (Network.type === 'WIFI') {
console.log('we got a wifi connection, woohoo!');
}
}, 3000);
});
console.log("Sub" + connectSubscription);
connectSubscription.unsubscribe();
}
here is my home.html file
`<ion-header>
<ion-navbar>
<ion-title>Home</ion-title>
</ion-navbar>
</ion-header>
<ion-content padding>
<button ion-buttton (click)="checkConnection()">Check Network</button>
</ion-content>`
I tried implementing the same code but doesn't work.
I want to know what is the exact code that I can use ?
What is that I need to import to use this code if it is the right one?
Also I want to know how to run it during the splashscreen ? On the console I found these errors
"Native: tried calling Network.type, but the Network plugin is not installed. Network plugin: 'ionic plugin add cordova-plugin-network-information'
But i've already installed the required plugin following that above command.I also installed "npm install ionic-native".
I reinstalled them on seeing this error but this still persists.
In your
config.xml
add the following:<preference name="AutoHideSplashScreen" value="false" />
This will make the SplashScreen stay visible until you manually hide it.
Then in your
app.component.ts
do the following:reference from this -
https://ionicframework.com/docs/native/network/
install :
$ ionic cordova plugin add cordova-plugin-network-information
$ npm install --save @ionic-native/network
and put this code in
app.component.ts
and add code in to
app.module.ts
Hope this will helpful.
hi, make sure you have
ionic-native
to the latest version: https://github.com/driftyco/ionic-native/blob/master/CHANGELOG.mdplease see this for implementation: https://forum.ionicframework.com/t/using-ionic-2-rc-4-native-network/75715/4
there is another problem associated with this , where on disconnect fires twice rather than only once: IONIC 2 native Network.onDisconnect() running code twice
I hope this helps.... besides there is no need to check during splashscreen.... make a
provider
for check network status, and then call your new provider/service inapp.component.ts
Oh and dont pay attention to the message:
Native: tried calling Network.type, but the Network plugin is not installed.
Just make sure you have added it correctly:
ionic plugin add cordova-plugin-network-information --save