===== GetMacAddress =====
//(Information and examples taken from the DroidScript documentation)//
==== Description ====
The **GetMacAddress** method returns the Wifi MAC address of your device.
app.GetMacAddress();
----
==== Example ====
function OnStart()
{
mac = app.GetMacAddress();
app.ShowPopup( mac );
}