Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 365 Bytes

README.md

File metadata and controls

18 lines (12 loc) · 365 Bytes

phonegap-imeiplugin

Get The Real IMEI Number on Android Device

Install:

phonegap plugin add https://github.com/zho/phonegap-imeiplugin.git
-- OR --
cordova plugin add imeiplugin

Example Usage:

window.plugins.imeiplugin.getImei(callback);

function callback(imei) {
    console.log("My Android IMEI :" + imei);
}