Skip to content Skip to sidebar Skip to footer

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 ??

Solution 1:

for Cordova >= 5.0.0

cordova plugin add com-badrit-macaddress

Example Usage:

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

Post a Comment for "Mac Address Of Mobile In Ionic-angular App"