Tutorial by Examples

Cordova plugins are in simple words a layer on top of the respective native platform. Plugins provide an interface between to access the native platform.
Cordova Plugins provide a common interface to interact with the native code. Each plugin has an intermediary JavaScript file that provides access to platform specific features.
cordova plugin add <plugin-name> Example: cordova plugin add cordova-plugin-camera The plugin should be installed in the root directory of the project. Note: Before adding the plugin replace the platform specific www folder content with the outer www folder in the root directory. Th...
cordova-plugin-battery-status - used for monitoring device's battery status. cordova-plugin-camera - provides an API for taking pictures and for choosing images from the system's image library. cordova-plugin-contacts - provides access to the device contacts database. cordova-plug...

Page 1 of 1