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: 2 months 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 (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-10-08T09:51:34.000Z (over 7 years ago)
- Last Synced: 2025-04-04T18:55:36.958Z (3 months ago)
- Topics: android, cordova-plugin, imei-number
- Language: Java
- Size: 2.93 KB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.MD
- License: LICENSE.md
Awesome Lists containing this project
README
# cordova-plugin-imeigetter [](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... :(");
});
```