Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
PhoneGap Beginners Guide (third edition)

You're reading from   PhoneGap Beginners Guide (third edition) Create, develop, debug, and deploy your very own mobile applications with PhoneGap

Arrow left icon
Product type Paperback
Published in Jul 2015
Publisher
ISBN-13 9781784392284
Length 284 pages
Edition 1st Edition
Languages
Arrow right icon
Toc

Table of Contents (16) Chapters Close

Preface 1. Introduction to PhoneGap FREE CHAPTER 2. Building Your First PhoneGap Project 3. Mobile Frameworks 4. Working with Plugins 5. Using Device Storage and the Files API 6. Using the Contacts and Camera APIs 7. Accessing the Device Sensors and Locations API 8. Advanced PhoneGap 9. Getting Ready for Release 10. A Sample PhoneGap Project A. The JavaScript Quick Cheat Sheet B. Publishing Your App C. Related Plugin Resources D. PhoneGap Tools Index

Time for action – accessing the Device API

You already used the deviceready event in Chapter 2, Building Your First PhoneGap Project, to handle the bootstrap of our app. Use the device API to get information about the type of device you are running once the event is fired.

  1. Open the command-line tool and create a new Cordova project using the Cordova command-line utility you installed before:
    $ cordova create DeviceApi
    

    This will create a new directory called DeviceApi in your current working directory.

  2. Move to the directory you just created:
    $ cd DeviceAPI
    
  3. Add the platforms you want to test on the device API. For example, we add the Android platform:
    $ cordova platform add android
    
  4. Install the device API plugin. You can also use the shortest way to install the plugin, as shown here, instead of using the entire GIT repository URL:
    $ cordova plugin add cordova-plugin-device
    
  5. In the www folder inside the project folder you just created, open the index.html file and add a div element with id...
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 $19.99/month. Cancel anytime
Banner background image