Skip to content

Latest commit

 

History

History
16 lines (10 loc) · 318 Bytes

README.md

File metadata and controls

16 lines (10 loc) · 318 Bytes

phonegap-imeiplugin

Get The Real IMEI Number on Android Device

Install:

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

Example Usage:

window.plugins.imeiplugin.getImei(callback);

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