Quick Start
MetaMap capacitor plugin Usage Guide
This is a guide to implement Metamap in the Capacitor framework
Requirments
Capacitor support version is 6
iOS
Add minimum iOS version in capacitor.config.json\
"ios": {
"minVersion": "13.0"
}
Important❗
if your flow has a step that uses some native iOS computers, you need to go iOS folder in the project and add permissions in the info.plist iOS permissions
Android
For Android, check that the minSdkVersion
in <YOUR_APP>/build.gradle
is ≥21
Installation
LTS version (Recommended for most users): | Current Version(Latest features) |
---|---|
4.6.0 | 4.6.0 |
Use the following CLI to install a plugin for your project. Replace <version_number>
with either the LTS or current version number your application uses:
npm i metamap-capacitor-plugin@<version_number>
Build your application.
ionic build
Update the Capacitor files.
npx cap sync
The plugin is stored in MetaMap npm account, it downloaded and installed into your project.
Updated 3 months ago