What is the best way to get the country code?
As of now, I know two ways. One is to get by TelephonyManager and another by Locale. Which is another best and unique wa
You can use this code to get ISO 2:
Locale.getDefault().getCountry()
And this to get ISO 3:
Locale.getDefault().getISO3Country()