Ionic keyboard events not fired

After adding crosswalk I faced many issues with keyboard and overlapping content
the only solution was adding adjust nothing then get the keyboard height

window.addEventListener('native.keyboardshow',function(e){
    $(".msg_footer").css("bottom", e.keyboardHeight + "px");
alert('Keyboard height is: ' + e.keyboardHeight);    
});
window.addEventListener('native.keyboardhide',function(e){
    $(".msg_footer").css("bottom","0px");
alert('Keyboard height is: ' + e.keyboardHeight);    
});

with adjustResize events are fired and I got the alert message

but with adjustNothing ,alerts are not fired any more

here is my app run function I set ionic full scree to true

 myapp.run(function ($ionicPlatform) {
    $ionicPlatform.ready(function () {
      if (window.cordova && window.cordova.plugins.Keyboard) {

        cordova.plugins.Keyboard.hideKeyboardAccessoryBar(true);
        cordova.plugins.Keyboard.disableScroll(true);
      }
        if (window.StatusBar) {
        // org.apache.cordova.statusbar required
        StatusBar.styleDefault();
    }
   ionic.Platform.isFullScreen = true;
     });
 });

Any news on this one? It’s still not working on android 4.2 with Crosswalk