This site permanently moved to
https://droidscript.github.io
. Please update links accordingly.
You are being forwarded automatically in 3...
[stay here]
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
click to expand contents
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
loading