Back

GetDeviceId

Hello World

Returns the alphanumeric ID of the device which is different for each device.

app.GetDeviceId() → string

Example - Show Devide ID

function OnStart()
{
    var id = app.GetDeviceId();
    app.Alert( id );
}
    Copy     Copy All       Run