Chaudhary
Chaudhary

Reputation: 93

MAC address of mobile in ionic-angular app

I am developing an IONIC app for android and iOS using AngularJS. I want to access the MAC address of the device. How can I achieve this ??

Upvotes: 0

Views: 2643

Answers (1)

NagaPrasad
NagaPrasad

Reputation: 44

for Cordova >= 5.0.0

cordova plugin add com-badrit-macaddress

Example Usage:

   window.MacAddress.getMacAddress(
     function(macAddress) {alert(macAddress);},function(fail) {alert(fail);}
   );

Upvotes: 1

Related Questions