Yes, i built it and run with 2 different devices, the event never fire when the keyboard hide.
I’m trying to run with --livereload in real device, still not work.
Judging by the code provided, I think you have followed this ionic-plugins-keyboard.
But I see some difference native.keyboardhide vs native.hidekeyboard.
Can you try adding the native.keyboardhide event listener out of deviceready? Something like -
window.addEventListener('native.keyboardhide', function () {
StatusBar.hide()
console.log("as")
});
If above doen’t work. Then lets solve this one with normal JavaScript.
The device keyboard only opens after some input field gets focus(programetically or by touch event).
Then just add onblur event listener to that particular input field(if possible).