Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletter Hub
Free Learning
Arrow right icon
timer SALE ENDS IN
0 Days
:
00 Hours
:
00 Minutes
:
00 Seconds
Arrow up icon
GO TO TOP
Phonegap Essentials

You're reading from   Phonegap Essentials Use PhoneGap to build cross-platform mobile applications quickly and efficiently

Arrow left icon
Product type Paperback
Published in Sep 2015
Publisher
ISBN-13 9781785284687
Length 178 pages
Edition 1st Edition
Languages
Arrow right icon
Author (1):
Arrow left icon
Ivan Turkovic Ivan Turkovic
Author Profile Icon Ivan Turkovic
Ivan Turkovic
Arrow right icon
View More author details
Toc

Essential plugins


Since, in the latest PhoneGap version, no plugins are added by default, it was decided to keep the app builds as small and lightweight as possible. We are free to enhance the app based on our needs, but this could be challenging for beginners as there are so many plugins it is hard to decide which ones to start with. I have selected a few that, in my opinion, are essential and should be included in the core. So let's go over them and see what capabilities they enable.

The Device plugin

The Device plugin defines a global device object that describes the device's hardware and software information. The Device plugin is available only after the deviceready event has been used.

phonegap plugin add cordova-plugin-device

After installing the plugin, let us create an example of how it could be used. Generally, it is used for testing for the specific platform or model:

document.addEventListener('deviceready', function(event) {
  var content = "";
  content += "Version: " + device.cordova...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at £13.99/month. Cancel anytime
Visually different images