Reputation: 93
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
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