Back

GetCountry

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 );
}
    Copy     Copy All       Run