krikoo-capacitor
v0.6.4
Published
Set of capacitor plugins.
Downloads
4
Readme
krikoo-capacitor
Set of Capacitor plugins compatible with Capacitor's plugins.
CONTENTS
Installation
$ npm i krikoo-capacitor@latest
iOS configuration
There is no needed.
Android configuration
Open main activity project file located at:
app -> java -> com.domain.myapplication -> MainActivity
Import the following dependencies:
import com.krikoo.capacitor.datastorage.DataStorage;
import com.krikoo.capacitor.filepicker.FilePicker;
import com.krikoo.capacitor.opener.Opener;
import com.krikoo.capacitor.sharer.Sharer;
Add into this.init
method the following classes:
add(DataStorage.class);
add(FilePicker.class);
add(Opener.class);
add(Sharer.class);
Plugin Links
Developing setup
TODO