Skip to content

ifredom/cordova-plugin-ip-mac-address-1

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

#This plugin is used to get the device IP Address and Mac Address

Install this plugin using

cordova plugin add cordova-plugin-ip-mac-address

function call to get the IP Address

var params = {};
addressimpl.request("getIPAddress", JSON.stringify(params), function(message) {
    	alert("ip address "+message);
    }, function() {
    	alert("failed on get ip address");
    });

function call to get the Mac Address

var params = {};
addressimpl.request("getMACAddress", JSON.stringify(params), function(message) {
    	alert("mac address "+message);
    }, function() {
    	alert("failed on get mac address");
    });

About

To fetch the ip and mac address of a device.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Objective-C 78.3%
  • Java 20.6%
  • JavaScript 1.1%