Back

GetVersion

Hello World

Returns the app version number of the currently running apk.

app.GetVersion() → string

Example - Show App Version

function OnStart()
{
    var version = app.GetVersion();
    app.Alert( version, "App Version:" );
}
    Copy     Copy All       Run