Back

GetDSVersion

JS Py
Hello World

Returns the current DroidScript version number in the format 0.00.

app.GetDSVersion() → Number: float

Example - Show DroidScript Version

function OnStart()
{
    var ver = app.GetDSVersion();
    app.Alert( ver );
}
from native import app

def OnStart():
    ver = app.GetDSVersion()
    app.Alert(ver)
    Copy     Copy All       Run