Back
GetOSVersion
GetOSVersion returns the version number of the Android OS currently running.
app.GetOSVersion() ->
number
- integer
Example - Example
function OnStart()
{
version = app.GetOSVersion();
app.ShowPopup( version );
}
Copy
Copy All
Run