-
Notifications
You must be signed in to change notification settings - Fork 13
plugins
Bhavesh Gohel edited this page Jan 29, 2015
·
3 revisions
Extending your app.
PhoneGap plugins allow you to enhance and extend the functionality of your hybrid app. For example, you could add accelerometer, camera, file, or push notification support using plugins.
You can learn about the official plugins on the PhoneGap Docs.
The plugins that we officially support are:
- Battery Status
- Camera
- Contacts
- Device
- Device Motion (Accelerometer)
- Device Orientation (Compass)
- Dialogs
- FileSystem
- File Transfer
- Geolocation
- Globalization
- InAppBrowser
- Media
- Media Capture
- Network Information (Connection)
- Splashscreen
- Vibration
If the official plugins don't cut it, then you can checkout all of our community plugins at plugins.cordova.io!
You learn about the plugin usage by running:
$ phonegap plugin help
Install a plugin:
$ phonegap plugin add org.apache.cordova.device
List installed plugins:
$ phonegap plugin list
Remove a plugin:
$ phonegap plugin remove org.apache.cordova.device