I am using the country code picker library for user to select a country.
I stored the selected items with country name (i.e.: Singapore).
Now I want to convert the country name into ISO Alpha 2 country code (i.e.: sg).
I am using the Locale but it was not working, what am i missing?
public String getCountryCodeFromName(String countryName){
Locale locale = new Locale("",countryName);
String countryCode = locale.getCountry().toLowerCase();
return countryCode;
}