Add Cordova Plugin to Mobile Google Chrome App?

I am using the Cordova CLI-tool cca Mobile Chrome App to create my webapp on Android.

Then I added the Cordova plugin, which I want to display in Cordoba config.xml, like this:

<feature name="Keyboard">
    <param name="ios-package" value="IonicKeyboard" onload="true" />
</feature>

How to specify this addition in the manifest file?

It seems to be detected by cca

$ cca plugin ls
cca v0.1.1
com.ionic.keyboard 1.0.2 "Keyboard"
[..]

Grateful for any pointers. If it is not currently supported, I could help in creating it.

+4
source share
1 answer

config.xml , . cca , cordova , , :

cca plugin add com.ionic.keyboard

!

+6

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


All Articles