Cordova Plugins
Last updated
Was this helpful?
Last updated
Was this helpful?
Usually, you need native code (Java for Android, Objective-C for iOS, etc) to access native device functions such as camera, file system, storage, etc. However, you can access these native functions using JavaScript with Cordova.
Cordova is a set of device APIs that allow a mobile app developer to access native device functions such as the camera or accelerometer from JavaScript. Therefore, Monaca uses Cordova to enable hybrid apps to access native device functions from JavaScript.
For more information about Cordova, please refer to .
You can’t use device APIs (Cordova plugins) before Cordova is fully loaded. The deviceready
event fires once Cordova has fully loaded. Once the event fires, you can safely make calls to Cordova APIs. Applications typically attach an event listener with document.addEventListener
once the HTML document’s DOM has loaded.
As an example, let’s start up the camera function by using the Camera API. Please copy and paste the code below to your project in the Monaca Cloud IDE. Then you can run it on the .
When creating a new project, the latest Cordova version available in Monaca will be automatically applied.
In order to upgrade the Cordova version of your project, please do as following:
From Monaca Cloud IDE, go to Configure → Cordova Plugin Settings.
Click the Upgrade link.
Directly from Cordova Plugins page in Monaca Cloud IDE, you can easily enable Cordova plugins.
To import a Cordova plugin into your project, please do as follows:
From the Monaca Cloud IDE, go to Configure → Cordova plugin Settings.
3. Once a plugin is enabled/imported, you might want to configure it. Mouseover a plugin you want to configure and click Configure to open the plugin’s settings dialog where you can change the plugin’s version and set the plugin’s parameters.
Core Cordova plugins refer to a minimal set of Cordova APIs such as battery, camera, contacts, devices. For more information, please refer to .
Third-party Cordova plugins refer to other existing Cordova plugins. There are that you can add to your project right from the Cordova Plugins page.
The Cordova Plugins page will be shown. On this page, core and some third-party Cordova plugins are listed. Mouseover a plugin and click Enable to add the plugin. If you cannot find the plugin you want in the list, you can import other third-party Cordova plugins by using the Import Cordova Plugin button. A project containing external third-party Cordova plugins requires a custom built Monaca Debugger. Please refer to .