Back

IsChrome

JS Py
Hello World

Checks if the device is running on ChromeOS.

app.IsChrome() → Boolean

See Also: IsTablet

Example - Check APK

function OnStart()
{
    var isChrome = app.IsChrome();
    app.Alert( isChrome, "is Chrome:" );
}
from native import app

def OnStart():
    isChrome = app.IsChrome()
    app.Alert(isChrome, "is Chrome:")
    Copy     Copy All       Run