0

I just updated my cordova from 4.3.0 to 5.1.1 and it seems that the keyboard event is not firing up previously,

 document.addEventListener("showkeyboard",function() {
   }

and

 document.addEventListener("hidekeyboard",function() {
 }

where working but after upgrading it stopped working ,i am also using a keyboard plugin ionic keyborad it has its own events

 window.addEventListener('native.keyboardshow', keyboardShowHandler);

they are also not firing ,please help me with the issue

McVenco
  • 1,011
  • 1
  • 17
  • 30
Pranay Dutta
  • 2,483
  • 2
  • 30
  • 42

1 Answers1

1

it seems that from cordova-android-4.0.0 these events have been removed and they are suggesting to use plugin such as ionic-keyboard-plugin for that events

Ref-src see in other changes section

Pranay Dutta
  • 2,483
  • 2
  • 30
  • 42