mirror of
https://github.com/purplecabbage/phonegap-plugins.git
synced 2026-01-13 08:28:02 -05:00
MacAddress plugin for Phonegap (Android)
By Olivier Brand
Adding the Plugin to your project
-
To install the plugin, move
MacAddress.jsto your project's www folder and include a reference to it in your html files.<script src="MacAddress.js"></script>
-
Create a folder called 'com/phonegap/plugin/macaddress' within your project's src folder.
-
And copy the java file into that new folder.
mkdir -p /src/com/phonegap/plugin/macaddress
cp ./ResourcesPlugin.java /src/com/phonegap/plugin/macaddress
- Set the permissions into the Android Manifest for accessing the mac address.
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
-
Add a plugin line to
res/xml/plugins.xml<plugin name="MacAddress" value="com.phonegap.plugin.macaddress.MacAddressPlugin" />
Using the plugin
var networkInterface = {};
// Get network interface
networkInterface = window.plugins.macaddress.getMacAddress();
console.log(networkInterface.mac);