3

I am unable to get IMEI number of my device from my ionic application (android). I tried several ways to do that but failed. How may i suppose to get IMEI number of my device through ionic??

Carl Poole
  • 1,970
  • 2
  • 23
  • 28

1 Answers1

0

you can use imeiplugin

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);
}

for more reference https://www.npmjs.com/package/imeiplugin

Edison Augusthy
  • 1,535
  • 17
  • 32