How to get country code like +91 for India and +1 for US.
This is my code,
TelephonyManager manager = (TelephonyManager) this.getSystemService(Context.TELEPHONY_SERVICE);
String CountryID= manager.getSimCountryIso().toUpperCase();
Above code shows IN. Please help me.