rd-deviceinformation

1.0.1 • Public • Published

DeviceInformation plugin for Phonegap

This plugin allows you to retrieve most information about your Android devices that are available through Android's Telephony Manager and Account Manager classes from your PhoneGap application:

  1. Your unique Device ID
  2. Phone Number (if it is stored in your SIM card)
  3. Country ISO of your phone network provider
  4. Name of your network provider
  5. Your SIM Card Serial number
  6. Country ISO of your SIM card
  7. Name of your SIM card mobile operator
  8. E-mail/Phone number used by apps listed in your Settings > Accounts & Sync list

Adding the Plugin to your project

Using this plugin requires Android PhoneGap.

If you have installed PhoneGap CLI, run the following code from the command line:

phonegap local plugin add https://github.com/vliesaputra/DeviceInformationPlugin

Otherwise,

  1. To install the plugin, copy the www/deviceinformation.js file to your project's www folder and include a reference to it in your html file after phonegap.js.

     <script type="text/javascript" charset="utf-8" src="phonegap.js"></script>
     <script type="text/javascript" charset="utf-8" src="deviceinformation.js"></script>
    
  2. Create a directory within your project called "src/com/vliesaputra/cordova/plugins" and copy src/com/vliesaputra/cordova/plugins/DeviceInformation.java into it.

  3. In your res/xml/config.xml file add the following line:

     <plugin name="DeviceInformation" value="com.vliesaputra.cordova.plugins.DeviceInformation"/>
    

Using the plugin

Create a new object that represents the plugin using cordova.require. Then you can call the 'get' method on that object providing a success callback which will be called with a result value that is a JSON object of all the information about your devices.

  /**
    * Get the devices information.
    */
  get(success, failure)

Sample use:

var deviceInfo = cordova.require("cordova/plugin/DeviceInformation");
deviceInfo.get(function(result) {
        console.log("result = " + result);
    }, function() {
        console.log("error");
    });

RELEASE NOTES

December 29, 2013

  • Initial release

BUGS AND CONTRIBUTIONS

LICENSE

This plugin is available under the MIT License (2008). The text of the MIT license is reproduced below.


The MIT License

Copyright (c) 2013 Veronica Liesaputra

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.0.1
    0
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 1.0.1
    0

Package Sidebar

Install

npm i rd-deviceinformation

Weekly Downloads

0

Version

1.0.1

License

MIT

Last publish

Collaborators

  • ravi013