Back

GetCountryCode

Hello World

Returns the code of the device country (ie.

app.GetCountryCode() → string

“GB” or “DE”)

See Also: GetCountry, GetLanguageCode

Example - Show Country Code

function OnStart()
{
    var code = app.GetCountryCode();
    app.Alert( code );
}
    Copy     Copy All       Run