I want to get the country name and country code. For that, I have used the code below:
Country_Language = getApplicationContext().getResources().getConfiguration().locale.getDisplayLanguage();
Country_code= getApplicationContext().getResources().getConfiguration().locale.getCountry(); // get country code
But I always get "US" and "United State" as the country code and country name, while my country is not US.
Any help is appreciated.