I have this code:
showLoader() {
this.loaderToShow = this.loadingCtrl.create({
message: 'Autenticando...'
}).then((res) => {
res.present();
res.onDidDismiss().then(() => {
console.log('Loading dismissed!');
});
});
}
and in android 6+ works perfectly, but in Android 5, don’t show the loading.
any ideas to solve it
Regards