Back

GetCountry

JS Py
Hello World

Returns the name of the device country (ie.

app.GetCountry() → String

“United Kingdom” or “Deutschland”)

See Also: GetCountryCode,

See Also: GetLanguage

Example - Show Country

function OnStart()
{
    var name = app.GetCountry();
    app.Alert( name );
}
from native import app

def OnStart():
    name = app.GetCountry()
    app.Alert(name)
    Copy     Copy All       Run