Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tomloprod/cordova-plugin-imeigetter
IMEIGetter is a cordova plugin to get the IMEI number in android devices
https://github.com/tomloprod/cordova-plugin-imeigetter
android cordova-plugin imei-number
Last synced: about 1 month ago
JSON representation
IMEIGetter is a cordova plugin to get the IMEI number in android devices
- Host: GitHub
- URL: https://github.com/tomloprod/cordova-plugin-imeigetter
- Owner: tomloprod
- License: mit
- Created: 2016-05-17T10:27:29.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-10-08T09:51:34.000Z (over 7 years ago)
- Last Synced: 2024-12-01T02:35:54.559Z (about 1 month ago)
- Topics: android, cordova-plugin, imei-number
- Language: Java
- Size: 2.93 KB
- Stars: 3
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.MD
- License: LICENSE.md
Awesome Lists containing this project
README
# cordova-plugin-imeigetter [![License](https://img.shields.io/github/license/tomloprod/cordova-plugin-imeigetter.svg)](http://www.opensource.org/licenses/mit-license.php)
**IMEIGetter** is a cordova plugin to get the IMEI number in android devices.
## Supported Platforms
- Android
## Installation
Cordova:
cordova plugin add https://github.com/tomloprod/cordova-plugin-imeigetter.git
## Usage
This plugin exports an object with one method called "get":
```javascript
window.plugins.imeiGetter.get(function(imei){
console.log(imei);
}, function(){
console.error("Oh... :(");
});
```