Cannot start Ionic on Android: class not found IonicKeyboard exception

After creating and running the Android application, it closes.

Eclipse browsing logcat shows class not found com.ionic.keyboard.IonicKeyboard exception

I am new to Ionic and I don’t know how to make it work. thanks in advance

+5
source share
3 answers

I had the same problems. In my case, the plugin was already installed , so I had to remove and add it again:

Try this in the application folder:

cordova plugin remove com.ionic.keyboard 

and

 cordova plugin add com.ionic.keyboard 
+14
source

npm changed plugin name. Now it should be cordova plugin add ionic-plugin-keyboard

Try this in the application folder:

cordova plugin remove ionic-plugin-keyboard

and

 cordova plugin add ionic-plugin-keyboard 
+1
source

It seems that the plugin is not installed?

Try in cmd:

 cordova plugin add com.ionic.keyboard 
0
source

Source: https://habr.com/ru/post/1204739/


All Articles