To install this plugin, follow the Command-line Interface Guide.
If you are not using the Cordova Command-line Interface, follow Using Plugman to Manage Plugins.
Exposes 1 methods:
- get: returns IMEI as string
Each method takes two arguments, success and error functions.
Usage examples:
window.plugins.imei.get(
function(imei) {
console.log("got imei: " + imei);
},
function() {
console.log("error loading imei");
}
);